public interface NavigatorPageIF
Modifier and Type | Method and Description |
---|---|
ContextManagerIF |
getContextManager()
INTERNAL: Get the Context Manager.
|
DeclarationContextIF |
getDeclarationContext()
INTERNAL: Gets the tolog declaration context.
|
FunctionIF |
getFunction(String name)
INTERNAL: Get a function out of the register.
|
NavigatorApplicationIF |
getNavigatorApplication()
INTERNAL: Get the navigator application which allows
accessing all kind of configuration.
|
NavigatorConfigurationIF |
getNavigatorConfiguration()
INTERNAL: Get the navigator configuration for getting access
to the application.xml settings.
|
javax.servlet.jsp.PageContext |
getPageContext()
INTERNAL: Gets the JSP page context which allows to have access
to further request relevant information.
|
QueryProcessorIF |
getQueryProcessor()
INTERNAL: Get the tolog query processor the context tag is working with.
|
TopicMapIF |
getTopicMap()
INTERNAL: Get the topicmap object the context tag is working with.
|
void |
registerFunction(FunctionIF function)
Deprecated.
1.3.4. Replaced by registerFunction(String, Function).
|
void |
registerFunction(String name,
FunctionIF function)
INTERNAL: Add a named function to the registry.
|
ContextManagerIF getContextManager()
@Deprecated void registerFunction(FunctionIF function)
function
- The function to be added to the internal registry;
An object implementing FunctionIF.void registerFunction(String name, FunctionIF function)
name
- The name with which the function is to be registered.function
- The function to be added to the internal registry;
An object implementing FunctionIF.FunctionIF getFunction(String name)
name
- The string which identifies the name of the function.NavigatorApplicationIF getNavigatorApplication()
NavigatorConfigurationIF getNavigatorConfiguration()
TopicMapIF getTopicMap()
QueryProcessorIF getQueryProcessor()
javax.servlet.jsp.PageContext getPageContext()
DeclarationContextIF getDeclarationContext()