|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
javax.xml.parsers.SAXParserFactory
oracle.xml.jaxp.JXSAXParserFactory
Defines a factory API that enables applications to configure and obtain a SAX based parser to parse XML documents.
Constructor Summary | |
JXSAXParserFactory() Default Constructor |
Method Summary | |
boolean |
getFeature(java.lang.String name) returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader. |
SAXParser |
newSAXParser() Creates a new instance of a SAXParser using the currently configured factory parameters. |
void |
setFeature(java.lang.String name, boolean value) Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader. |
Methods inherited from class javax.xml.parsers.SAXParserFactory |
isNamespaceAware, isValidating, newInstance, setNamespaceAware, setValidating |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public JXSAXParserFactory()
Method Detail |
public SAXParser newSAXParser() throws ParserConfigurationException, SAXException
newSAXParser
in class SAXParserFactory
ParserConfigurationException
- if a parser cannot be created which satisfies the requested configuration.SAXException
public void setFeature(java.lang.String name, boolean value) throws ParserConfigurationException, SAXNotRecognizedException, SAXNotSupportedException
setFeature
in class SAXParserFactory
name
- The name of the feature to be set.value
- The value of the feature to be set.SAXNotRecognizedException
- When the underlying XMLReader does not recognize the property name.SAXNotSupportedException
- When the underlying XMLReader recognizes the property name but doesn't support the property.ParserConfigurationException
XMLReader.setFeature(java.lang.String, boolean)
public boolean getFeature(java.lang.String name) throws ParserConfigurationException, SAXNotRecognizedException, SAXNotSupportedException
getFeature
in class SAXParserFactory
name
- The name of the property to be retrieved.SAXNotRecognizedException
- When the underlying XMLReader does not recognize the property name.SAXNotSupportedException
- When the underlying XMLReader recognizes the property name but doesn't support the property.ParserConfigurationException
XMLReader.getProperty(java.lang.String)
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |