Public Member Functions | |
XSLTProcessorEnvSupportDefault (MemoryManagerType &theManager, XSLTProcessor *theProcessor=0) | |
virtual | ~XSLTProcessorEnvSupportDefault () |
void | setProcessor (XSLTProcessor *theProcessor) |
Reset the XLST processor instance. More... | |
virtual void | installExternalFunctionLocal (const XalanDOMString &theNamespace, const XalanDOMString &functionName, const Function &function) |
Install an external function in the local space. More... | |
virtual void | uninstallExternalFunctionLocal (const XalanDOMString &theNamespace, const XalanDOMString &functionName) |
Uninstall an external function from the local space. More... | |
virtual bool | problem (eSource where, eClassification classification, const XalanNode *sourceNode, const ElemTemplateElement *styleNode, const XalanDOMString &msg, const XalanDOMChar *uri, int lineNo, int charOffset) const |
Function that is called when a problem event occurs. More... | |
virtual XalanDocument * | parseXML (MemoryManagerType &theManager, const XalanDOMString &urlString, const XalanDOMString &base) |
Provides support for XML parsing service. More... | |
virtual XalanDocument * | getSourceDocument (const XalanDOMString &theURI) const |
Get the source document for the given URI. More... | |
virtual void | setSourceDocument (const XalanDOMString &theURI, XalanDocument *theDocument) |
Associate a document with a given URI. More... | |
virtual const XalanDOMString & | findURIFromDoc (const XalanDocument *owner) const |
Given a DOM Document, tell what URI was used to parse it. More... | |
virtual bool | elementAvailable (const XalanDOMString &theNamespace, const XalanDOMString &elementName) const |
Determine if an external element is available. More... | |
virtual bool | functionAvailable (const XalanDOMString &theNamespace, const XalanDOMString &functionName) const |
Determine if a function is available. More... | |
virtual XObjectPtr | extFunction (XPathExecutionContext &executionContext, const XalanDOMString &theNamespace, const XalanDOMString &functionName, XalanNode *context, const XObjectArgVectorType &argVec, const LocatorType *locator) const |
Handle an extension function. More... | |
virtual bool | problem (eSource where, eClassification classification, const PrefixResolver *resolver, const XalanNode *sourceNode, const XalanDOMString &msg, const XalanDOMChar *uri, int lineNo, int charOffset) const |
Function that is called when a problem event occurs. More... | |
virtual void | reset () |
Reset the instance. More... | |
XSLTProcessorEnvSupportDefault (const XSLTProcessorEnvSupportDefault &) | |
XSLTProcessorEnvSupportDefault & | operator= (const XSLTProcessorEnvSupportDefault &) |
bool | operator== (const XSLTProcessorEnvSupportDefault &) const |
![]() | |
XSLTProcessorEnvSupport () | |
virtual | ~XSLTProcessorEnvSupport () |
![]() | |
XPathEnvSupport () | |
virtual | ~XPathEnvSupport () |
Static Public Member Functions | |
static void | installExternalFunctionGlobal (const XalanDOMString &theNamespace, const XalanDOMString &functionName, const Function &function) |
Install an external function in the global space. More... | |
static void | uninstallExternalFunctionGlobal (const XalanDOMString &theNamespace, const XalanDOMString &functionName) |
Uninstall an external function from the global space. More... | |
Public Attributes | |
XPathEnvSupportDefault | m_defaultSupport |
XSLTProcessor * | m_processor |
Additional Inherited Members | |
![]() | |
enum | eSource { eXMLParser = 1, eXSLTProcessor = 2, eXPATHParser = 3, eXPATHProcessor = 4, eDataSource = 5 } |
enum | eClassification { eMessage = 0, eWarning = 1, eError = 2 } |
typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator | LocatorType |
typedef Function::XObjectArgVectorType | XObjectArgVectorType |
XSLTProcessorEnvSupportDefault::XSLTProcessorEnvSupportDefault | ( | MemoryManagerType & | theManager, |
XSLTProcessor * | theProcessor = 0 |
||
) |
|
virtual |
XSLTProcessorEnvSupportDefault::XSLTProcessorEnvSupportDefault | ( | const XSLTProcessorEnvSupportDefault & | ) |
|
virtual |
Determine if an external element is available.
theNamespace | namespace for the element |
elementName | name of extension element |
Implements XSLTProcessorEnvSupport.
|
virtual |
Handle an extension function.
executionContext | current execution context |
theNamespace | namespace of function |
functionName | extension function name |
argVec | vector of arguments to function |
locator | A LocatorType instance for error reporting. |
Implements XSLTProcessorEnvSupport.
|
virtual |
Given a DOM Document, tell what URI was used to parse it.
Needed for relative resolution.
owner | source document |
Implements XSLTProcessorEnvSupport.
|
virtual |
Determine if a function is available.
For standard function availability, theNamespace should be an empty string.
theNamespace | namespace for the function |
functionName | name of the function |
Implements XSLTProcessorEnvSupport.
|
virtual |
Get the source document for the given URI.
theURI | document URI |
Implements XSLTProcessorEnvSupport.
|
static |
Install an external function in the global space.
theNamespace | The namespace for the functionl |
functionName | The name of the function. |
function | The function to install. |
|
virtual |
Install an external function in the local space.
theNamespace | The namespace for the functionl |
functionName | The name of the function. |
function | The function to install. |
XSLTProcessorEnvSupportDefault& XSLTProcessorEnvSupportDefault::operator= | ( | const XSLTProcessorEnvSupportDefault & | ) |
bool XSLTProcessorEnvSupportDefault::operator== | ( | const XSLTProcessorEnvSupportDefault & | ) | const |
|
virtual |
Provides support for XML parsing service.
urlString | location of the XML |
base | base location for URI |
Implements XSLTProcessorEnvSupport.
|
virtual |
Function that is called when a problem event occurs.
where | either eXMLParser, eXSLTProcessor, eXPATHParser, eXPATHProcessor, or eDataSource. |
classification | either eWarning, or eError |
resolver | resolver for namespace resolution |
sourceNode | source tree node where the problem occurred (may be 0) |
styleNode | stylesheet node where the problem occurred (may be 0) |
msg | string message explaining the problem. |
uri | the URI of the stylesheet, if available. May be 0; |
lineNo | line number where the problem occurred. |
charOffset | character offset where the problem. |
Implements XSLTProcessorEnvSupport.
|
virtual |
Function that is called when a problem event occurs.
where | either eXMLParser, eXSLTProcessor, eXPATHParser, eXPATHProcessor, or eDataSource. |
classification | either eWarning, or eError |
resolver | resolver for namespace resolution |
sourceNode | source tree node where the problem occurred (may be 0) |
msg | string message explaining the problem. |
uri | the URI of the stylesheet, if available. May be 0; |
lineNo | line number where the problem occurred. |
charOffset | character offset where the problem. |
Implements XSLTProcessorEnvSupport.
|
virtual |
Reset the instance.
Implements XSLTProcessorEnvSupport.
void XSLTProcessorEnvSupportDefault::setProcessor | ( | XSLTProcessor * | theProcessor) |
Reset the XLST processor instance.
theProcessor | pointer to new processor instance |
|
virtual |
Associate a document with a given URI.
theURI | document URI |
theDocument | source document |
Implements XSLTProcessorEnvSupport.
|
static |
Uninstall an external function from the global space.
theNamespace | The namespace for the functionl |
functionName | The name of the function. |
|
virtual |
Uninstall an external function from the local space.
theNamespace | The namespace for the functionl |
functionName | The name of the function. |
XPathEnvSupportDefault XSLTProcessorEnvSupportDefault::m_defaultSupport |
XSLTProcessor* XSLTProcessorEnvSupportDefault::m_processor |
Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.
![]() |
Xalan-C++ XSLT Processor Version 1.10 |
|