Package net.ontopia.topicmaps.classify
Interface ClassifyPluginIF
-
- All Known Implementing Classes:
ConferencePlugin
,DefaultPlugin
,TologRulePlugin
,TopicContentPlugin
public interface ClassifyPluginIF
INTERNAL: Interface implemented by code that is able to locate classifiable content for topics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassifiableContentIF
getClassifiableContent(TopicIF topic)
INTERNAL: Returns the classifiable content for the given topic.boolean
isClassifiable(TopicIF topic)
INTERNAL: Returns true if the plug-in is able to locate classifiable content for the given topic.
-
-
-
Method Detail
-
isClassifiable
boolean isClassifiable(TopicIF topic)
INTERNAL: Returns true if the plug-in is able to locate classifiable content for the given topic.
-
getClassifiableContent
ClassifiableContentIF getClassifiableContent(TopicIF topic)
INTERNAL: Returns the classifiable content for the given topic.
-
-