| java.lang.Object de.danet.an.workflow.tools.XSLTTool
Constructor Summary | |
public | XSLTTool() Creates an instance of XSLTTool
with all attributes initialized to default values. |
XSLTTool | public XSLTTool()(Code) | | Creates an instance of XSLTTool
with all attributes initialized to default values.
|
requestedXMLArgumentType | public int requestedXMLArgumentType()(Code) | | Return the requested type for XML arguments.
one of XML_AS_W3C_DOM ,XML_AS_JDOM or XML_AS_SAX |
result | public Object result()(Code) | | Return the result evaluated during
ToolAgent.invokeinvoke . The method will only be called once after
each invoke, i.e. the attribute holding the result be be
cleared in this method.
the result data or null if the invocationdoes not return any data. |
setMappings | public void setMappings(org.w3c.dom.Element outputMappings)(Code) | | Set the xml definition of output mappings. It is used to convert the
result of the transformation process.
Parameters: outputMappings - the given xml as JDOM Element. |
setXSLT | public void setXSLT(String xsltLocation)(Code) | | Set the definition of XSLT. It is used to invoke the stylesheet
dynamically.
on windows, something like
"file:/C:/Entwicklung/WfMOpen/systemtest/tools/testXSLT.xsl"
on unix, something like "file:/usr/dir/test.xsl"
Parameters: xsltLocation - the location of given XSL as an URL. |
setXSLT | public void setXSLT(SAXEventBuffer xslt)(Code) | | Set the definition of XSLT.
Parameters: xslt - the given XSLT definition |
|
|