def CorpusCreatorDict(self, folderPath, file_extension):
     file_read_Write = FileReadWrite(folderPath)
     self.file_content_dict = file_read_Write.readFilesWordByWordInDict(folderPath, file_extension)
     #self.file_path_info = file_read_Write.getFilePath()
     #import pdb
     #pdb.set_trace()
     return self.file_content_dict
def readSourceCorpus(source_path_address):
    sourceFileRead = FileReadWrite(source_path_address)
    file_content_dict = sourceFileRead.readFilesWordByWordInDict(
        source_path_address, '.java')
    file_path_info = sourceFileRead.getFilePath()
    #print('---------------------------------------------------------------------------------------------------------------------------')
    #print (str(file_path_info))

    list_of_files = processSourceCorpusPaths(file_path_info)
    return list_of_files