Method Summary |
|
abstract public boolean | getFeature(String name) Returns the particular property requested for in the underlying
implementation of org.xml.sax.XMLReader.
Parameters: name - The name of the property to be retrieved. |
public boolean | isNamespaceAware() Indicates whether or not the factory is configured to produce
parsers which are namespace aware. |
public boolean | isValidating() Indicates whether or not the factory is configured to produce
parsers which validate the XML content during parse. |
public static SAXParserFactory | newInstance() Obtain a new instance of a SAXParserFactory . |
abstract public SAXParser | newSAXParser() Creates a new instance of a SAXParser using the currently
configured factory parameters. |
abstract public void | setFeature(String name, boolean value) Sets the particular feature in the underlying implementation of
org.xml.sax.XMLReader. |
public void | setNamespaceAware(boolean awareness) Specifies that the parser produced by this code will
provide support for XML namespaces. |
public void | setValidating(boolean validating) Specifies that the parser produced by this code will
validate documents as they are parsed. |