Package net.ontopia.topicmaps.nav2.core
Interface NavigatorPageIF
- All Known Implementing Classes:
ContextTag
public interface NavigatorPageIF
INTERNAL: Interface which should be implemented by root-ish tags
handling the outermost lexical scope in which all further
computation happens. (In practice, this means ContextTag.)
-
Method Summary
Modifier and TypeMethodDescriptionINTERNAL: Get the Context Manager.INTERNAL: Gets the tolog declaration context.getFunction(String name) INTERNAL: Get a function out of the register.INTERNAL: Get the navigator application which allows accessing all kind of configuration.INTERNAL: Get the navigator configuration for getting access to the application.xml settings.javax.servlet.jsp.PageContextINTERNAL: Gets the JSP page context which allows to have access to further request relevant information.INTERNAL: Get the tolog query processor the context tag is working with.INTERNAL: Get the topicmap object the context tag is working with.voidregisterFunction(String name, FunctionIF function) INTERNAL: Add a named function to the registry.voidregisterFunction(FunctionIF function) Deprecated.1.3.4.
-
Method Details
-
getContextManager
ContextManagerIF getContextManager()INTERNAL: Get the Context Manager.- Returns:
- object which implements the ContextManagerIF interface
-
getFunction
INTERNAL: Get a function out of the register.- Parameters:
name- The string which identifies the name of the function.- Returns:
- The function
-
getTopicMap
TopicMapIF getTopicMap()INTERNAL: Get the topicmap object the context tag is working with.- Returns:
- Object implementing TopicMapIF
-
getQueryProcessor
QueryProcessorIF getQueryProcessor()INTERNAL: Get the tolog query processor the context tag is working with.- Returns:
- Object implementing QueryProcessorIF
-
getPageContext
javax.servlet.jsp.PageContext getPageContext()INTERNAL: Gets the JSP page context which allows to have access to further request relevant information.- Since:
- 1.3.2
-
getDeclarationContext
DeclarationContextIF getDeclarationContext()INTERNAL: Gets the tolog declaration context.
-