|
|||||||||
| Home >> All >> org >> apache >> xalan >> [ xslt overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.xalan.xslt
Class XSLTProcessorFactory

java.lang.Objectorg.apache.xalan.xslt.XSLTProcessorFactory
- public class XSLTProcessorFactory
- extends java.lang.Object
Manufactures the processor for performing transformations. Use one of the static getProcessor methods to create an XSLTProcessor object.
| Constructor Summary | |
XSLTProcessorFactory()
|
|
| Method Summary | |
static XSLTProcessor |
getProcessor()
Get a new XSLTProcessor with the default high-performance DTM (Document Table Model) liaison and XML parser. |
static XSLTProcessor |
getProcessor(org.apache.xalan.xpath.xml.XMLParserLiaison parserLiaison)
Get a new XSLTProcessor that will use the specified XMLParserLiaison to interact with a given XML parser. |
static XSLTProcessor |
getProcessor(org.apache.xalan.xpath.xml.XMLParserLiaison parserLiaison,
org.apache.xalan.xpath.XPathFactory xpathFactory)
Get a new XSLTProcessor that will use the specified XMLParserLiaison and XPathFactory to interact with a given XML parser. |
static XSLTProcessor |
getProcessorUsingLiaisonName(java.lang.String parserLiaisonClassName)
Get a new XSLTProcessor that will use a given XMLParserLiaison class to interact with a given XML parser. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
XSLTProcessorFactory
public XSLTProcessorFactory()
| Method Detail |
getProcessor
public static XSLTProcessor getProcessor() throws org.xml.sax.SAXException
- Get a new XSLTProcessor with the default high-performance DTM (Document Table Model) liaison and XML parser.
Note If you want to process DOM Node input, use getProcessorUsingLiaisonName("org.apache.xalan.xpath.xdom.XercesLiaison") 55 .
getProcessorUsingLiaisonName
public static XSLTProcessor getProcessorUsingLiaisonName(java.lang.String parserLiaisonClassName) throws org.xml.sax.SAXException
- Get a new XSLTProcessor that will use a given XMLParserLiaison class to interact with
a given XML parser. You can use this method, for example, if you are processing DOM Node input with
org.apache.xalan.xpath.xdom.XercesLiaison and the Xerces XML parser.
If your input is in the form of a file, character stream, byte stream, or SAX DocumentHandler, you may want to use the high-performance DTM liaison and parser, in which case you can use the no-argument constructor.
getProcessor
public static XSLTProcessor getProcessor(org.apache.xalan.xpath.xml.XMLParserLiaison parserLiaison)
- Get a new XSLTProcessor that will use the specified XMLParserLiaison to interact
with a given XML parser. If your input is in the form of
a file, character stream, byte stream, or SAX DocumentHandler, you may want to use the high-performance
DTM liaison and parser, in which case you can use the no-argument getProcessor() method.
getProcessor
public static XSLTProcessor getProcessor(org.apache.xalan.xpath.xml.XMLParserLiaison parserLiaison, org.apache.xalan.xpath.XPathFactory xpathFactory)
- Get a new XSLTProcessor that will use the specified XMLParserLiaison and XPathFactory to interact
with a given XML parser. If your input is in the form of
a file, character stream, byte stream, or SAX DocumentHandler, you may want to use the high-performance
DTM liaison and parser, in which case you can use the no-argument getProcessor() method.
|
|||||||||
| Home >> All >> org >> apache >> xalan >> [ xslt overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
org.apache.xalan.xslt.XSLTProcessorFactory