Class TologQueryProcessorFactory
- java.lang.Object
-
- net.ontopia.topicmaps.query.impl.utils.TologQueryProcessorFactory
-
- All Implemented Interfaces:
QueryProcessorFactoryIF
public class TologQueryProcessorFactory extends Object implements QueryProcessorFactoryIF
PUBLIC:- Since:
- 5.1
-
-
Constructor Summary
Constructors Constructor Description TologQueryProcessorFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryProcessorIF
createQueryProcessor(TopicMapIF topicmap, LocatorIF base, Map<String,String> properties)
PUBLIC: Creates a newQueryProcessorIF
instance to query a given topic map.String
getQueryLanguage()
PUBLIC: Returns the query language that is used by thisQueryProcessorFactoryIF
implementation.
-
-
-
Field Detail
-
NAME
public static final String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getQueryLanguage
public String getQueryLanguage()
Description copied from interface:QueryProcessorFactoryIF
PUBLIC: Returns the query language that is used by thisQueryProcessorFactoryIF
implementation.- Specified by:
getQueryLanguage
in interfaceQueryProcessorFactoryIF
- Returns:
- the name of this
QueryProcessorFactoryIF
implementation.
-
createQueryProcessor
public QueryProcessorIF createQueryProcessor(TopicMapIF topicmap, LocatorIF base, Map<String,String> properties)
Description copied from interface:QueryProcessorFactoryIF
PUBLIC: Creates a newQueryProcessorIF
instance to query a given topic map.- Specified by:
createQueryProcessor
in interfaceQueryProcessorFactoryIF
- Parameters:
topicmap
- the topic map to be used by the query processor.base
- base address of the topic map if known.properties
- additional properties used to configure the query processor.- Returns:
- a
QueryProcessorIF
instance that can be used to query the topic map.
-
-