Uses of Interface
tml.storage.importers.Importer

Packages that use Importer
tml.storage Implements a repository of documents, from which several corpora can be obtained. 
tml.storage.importers Importers implement text cleaning from different file formats. 
 

Uses of Importer in tml.storage
 

Methods in tml.storage that return Importer
 Importer Repository.getParser()
          Gets the Importer used to transform the content before inserting into the Repository
 

Methods in tml.storage with parameters of type Importer
 void Repository.addDocument(java.lang.String externalId, java.lang.String content, java.lang.String title, java.lang.String url, Importer importer)
          Adds a new document to the repository
 

Uses of Importer in tml.storage.importers
 

Classes in tml.storage.importers that implement Importer
 class HtmlImporter
          This importer uses org.htmlpraser to obtain plain text from an HTML file.
 class TextImporter
          TextImporter implements the simples importer of plain text, therefore it just returns the content as it is.
 

Methods in tml.storage.importers that return Importer
static Importer AbstractImporter.createImporter(java.lang.String fileExtension)