Package net.ontopia.topicmaps.classify
Interface FormatModuleIF
- All Known Implementing Classes:
FormatModule,HTMLFormatModule,OOXMLPowerpointFormatModule,OOXMLWordFormatModule,PDFFormatModule,PlainTextFormatModule,PowerPointFormatModule,WordFormatModule,XMLFormatModule
public interface FormatModuleIF
INTERNAL: Interface that encapsulates the support for a given
document format.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanINTERNAL: Returns true if the content of the classifiable content is considered to be of the supported format.booleanINTERNAL: Returns true if the identifier of the classifiable content is considered to be indicating the supported format.voidreadContent(ClassifiableContentIF cc, TextHandlerIF handler) INTERNAL: Reads and analyzes the classifiable content and triggers callbacks on the text handler to identify the text and the structure of the classifiable content.
-
Method Details
-
matchesContent
INTERNAL: Returns true if the content of the classifiable content is considered to be of the supported format. -
matchesIdentifier
INTERNAL: Returns true if the identifier of the classifiable content is considered to be indicating the supported format. -
readContent
INTERNAL: Reads and analyzes the classifiable content and triggers callbacks on the text handler to identify the text and the structure of the classifiable content.
-