Package com.icl.saxon.aelfred
Class SAXParserFactoryImpl
- java.lang.Object
-
- javax.xml.parsers.SAXParserFactory
-
- com.icl.saxon.aelfred.SAXParserFactoryImpl
-
public class SAXParserFactoryImpl extends SAXParserFactory
Implements the JAXP 1.1 ParserFactory interface. To use the AElfred parser, set the system property javax.xml.parsers.SAXParserFactory to the value "com.icl.saxon.aelfred.SAXParserFactoryImpl"; then call javax.xml.parsers.SAXParserFactory.newInstance().newSAXParser().
-
-
Constructor Summary
Constructors Constructor Description SAXParserFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetFeature(String name)SAXParsernewSAXParser()voidsetFeature(String name, boolean value)-
Methods inherited from class javax.xml.parsers.SAXParserFactory
getSchema, isNamespaceAware, isValidating, isXIncludeAware, newDefaultInstance, newInstance, newInstance, setNamespaceAware, setSchema, setValidating, setXIncludeAware
-
-
-
-
Method Detail
-
getFeature
public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException
- Specified by:
getFeaturein classSAXParserFactory- Throws:
SAXNotRecognizedExceptionSAXNotSupportedException
-
setFeature
public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException
- Specified by:
setFeaturein classSAXParserFactory- Throws:
SAXNotRecognizedExceptionSAXNotSupportedException
-
newSAXParser
public SAXParser newSAXParser() throws ParserConfigurationException
- Specified by:
newSAXParserin classSAXParserFactory- Throws:
ParserConfigurationException
-
-