Method Summary |
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void | |
public void |
|
public void | |
public |
|
public |
|
public |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public void |
|
public |
|
public |
Method Detail |
DEPRECATED
public void addMFLDocument(Add a MFL document to the cache. This method causes the specified MFL document to be parsed and added to the WLXT object's cache. If a MFL Document has previously been added using this URI, the previous document is replaced.URL
mflURI)
throwsException
Exception
Related Topics
DEPRECATED
public void addMFLDocument(Add a MFL document to the cache. The user can supply the InputSource for the content of the MFL document. This method causes the specified MFL document to be parsed and added to the WLXT object's cache. If a MFL Document has previously been added using this URI, the previous document is replaced.URL
mflURI,InputSource
mflInput)
throwsException
Exception
Related Topics
DEPRECATED
public void addMFLDocument(Add a MFL document to the cache. The user can supply the InputSource for the content of the MFL document. This method causes the specified MFL document to be parsed and added to the WLXT object's cache. If a MFL Document has previously been added using this URI, the previous document is replaced.URL
mflURI,InputStream
mflInput)
throwsException
Exception
Related Topics
public void addMFLDocument(URL
mflURI,Reader
mflInput)
throwsException
Exception
DEPRECATED
public void addStylesheet(Add a single stylesheet to the cache. This method causes the specified stylesheet to be added into the XSLTWrapper object's cache.URL
stylesheetURI)
throwsException
Exception
Related Topics
DEPRECATED
public void addStylesheet(Add a single stylesheet to the cache. The user can supply the InputSource for the content of the stylesheet. This method causes the specified stylesheet to be added into the XSLTWrapper object's cache.URL
stylesheetURI,InputSource
stylesheetInput)
throwsException
Exception
Related Topics
public void clearMFLCache()
DEPRECATED
public void init(Initialize the WLXT with a Properties object.Properties
properties)
throwsException
Exception
Related Topics
DEPRECATED
public void init(Initialize WLXT with a Properties file. The properties file should contain the property 'WLXT.stylesheets' and/or 'WLXT.MFLDocuments'. The stylesheets listed in the 'WLXT.stylesheets' property are precompiled and cached internally. The MFL documents listed in the 'WLXT.MFLDocument' property are also precompiled and cached internally.String
filename)
throwsException
Exception
DEPRECATED
publicParse binary data given in binaryInput argument using the MFL document specified by mflURI. The resulting DOM object is returned to the caller.Document
parse(URL
mflURI,InputStream
binaryInput,PrintWriter
debug)
throwsException
No DTD or schema reference is output in the resulting XML.
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
publicParse binary data given in binaryInput argument using the MFL document specified by mflURI. The resulting DOM object is returned to the caller.Document
parse(URL
mflURI,InputStream
binaryInput,String
dtdSystemId,PrintWriter
debug)
throwsException
This method has a system id parameter that allows the user to specify the document type definition for the doctype element of the resulting XML.
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
publicParse binary data given in binaryInput argument using the MFL document specified by mflURI. The resulting DOM object is returned to the caller.Document
parse(URL
mflURI,InputStream
binaryInput,String
defaultNamespace,String
schemaLocation,PrintWriter
debug)
throwsException
This method has default namespace parameter that causes the resulting XML to output a default namespace in the root node of the document. This method also has a schema location parameter cause the resulting XML to reference a schema as its content model.
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
public void reinit(Reinitialize the entire cache. This method causes all stylesheets and MFL documents to be reloaded into the cache. The properties object should contain the property 'WLXT.stylesheets' and/or 'WLXT.MFLDocuments'.Properties
properties)
throwsException
Exception
DEPRECATED
public void reinitStylesheet(Reinitialize a single stylesheet. This method causes the specified stylesheet to be reloaded into the cache.URL
stylesheetURI)
throwsException
Exception
Related Topics
DEPRECATED
public void serialize(Serialize the XML data (given in document argument) to the binary format specified by the MFL document (mflURI). Each node of XML data is converted to the binary format specified by the MFL FieldFormat of the identical name. The order and grouping of the XML nodes must match the order and sequence specified in the MFL document.URL
mflURI,Document
document,OutputStream
binaryOutput,PrintWriter
debug)
throwsException
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
public void serialize(Serialize the XML data (given in xmlInput argument) to the binary format specified by the MFL document (mflURI). Each node of XML data is converted to the binary format specified by the MFL FieldFormat of the identical name. The order and grouping of the XML nodes must match the order and sequence specified in the MFL document.URL
mflURI,InputStream
xmlInput,OutputStream
binaryOutput)
throwsException
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
public void serialize(Serialize the XML data (given in xmlInput argument) to the binary format specified by the MFL document (mflURI). Each node of XML data is converted to the binary format specified by the MFL FieldFormat of the identical name. The order and grouping of the XML nodes must match the order and sequence specified in the MFL document.URL
mflURI,InputSource
xmlInput,OutputStream
binaryOutput)
throwsException
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
public void serialize(Serialize the XML data (given in xmlInput argument) to the binary format specified by the MFL document (mflURI). Each node of XML data is converted to the binary format specified by the MFL FieldFormat of the identical name. The order and grouping of the XML nodes must match the order and sequence specified in the MFL document.URL
mflURI,InputStream
xmlInput,OutputStream
binaryOutput,PrintWriter
debug)
throwsException
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
public void serialize(Serialize the XML data (given in xmlInput argument) to the binary format specified by the MFL document (mflURI). Each node of XML data is converted to the binary format specified by the MFL FieldFormat of the identical name. The order and grouping of the XML nodes must match the order and sequence specified in the MFL document.URL
mflURI,InputSource
xmlInput,OutputStream
binaryOutput,PrintWriter
debug)
throwsException
If the MFL document is not found in the cache, then it will be automatically processed and added to the cache.
Exception
DEPRECATED
public void transform(Perform an XSLT transformation on the XML input argument using the specified stylesheet. The result of the transformation is written to the output stream parameter. If the stylesheet is not found in the cache, then it will be automatically processed and added to the cache.InputSource
xmlInput,OutputStream
out,URL
stylesheetURI)
throwsException
Exception
Related Topics
DEPRECATED
public void transform(Perform an XSLT transformation on the document argument using the specified stylesheet. The result of the transformation is put in the result parameter.Document
document,OutputStream
out,URL
stylesheetURI)
throwsException
Exception
Related Topics
DEPRECATED
publicPerform an XSLT transformation on the document argument using the specified stylesheet. The result of the transformation is returned.Document
transform(InputSource
xmlInput,URL
stylesheetURI)
throwsException
Exception
Related Topics
DEPRECATED
publicPerform an XSLT transformation on the document argument using the specified stylesheet. The result of the transformation is returned.Document
transform(Document
document,URL
stylesheetURI)
throwsException
Exception
Related Topics