Uses of Class
tml.corpus.TextDocument

Packages that use TextDocument
tml.corpus Implements all the classes required for corpora management as Bags of Words, it also includes NLP for sentences. 
tml.storage Implements a repository of documents, from which several corpora can be obtained. 
 

Uses of TextDocument in tml.corpus
 

Constructors in tml.corpus with parameters of type TextDocument
ParagraphCorpus(TextDocument document)
           
SentenceCorpus(TextDocument document)
           
 

Uses of TextDocument in tml.storage
 

Methods in tml.storage that return TextDocument
 TextDocument Repository.getTextDocument(java.lang.String externalId)
          Gets a document from the repository by its external id.
 

Methods in tml.storage that return types with arguments of type TextDocument
 java.util.List<TextDocument> Repository.getAllTextDocuments()
          Returns a list with all the documents in the repository in TextDocument form
 

Methods in tml.storage with parameters of type TextDocument
 void Repository.deleteTextDocument(TextDocument document)
          Deletes a document from the repository.