| java.lang.Object javax.xml.parsers.SAXParserFactory com.sun.ukit.jaxp.ParserFactory
ParserFactory | public class ParserFactory extends SAXParserFactory (Code) | | Implementation of JAXP SAXParserFactory.
|
Method Summary | |
public boolean | getFeature(String name) Returns the particular property requested for in the underlying
implementation of DefaultHandler.
Parameters: name - The name of the property to be retrieved. | public SAXParser | newSAXParser() Creates a new instance of a SAXParser using the currently
configured factory parameters. | public void | setFeature(String name, boolean value) Sets the particular feature in the underlying implementation of
DefaultHandler. | public void | setNamespaceAware(boolean awareness) Specifies that the parser produced by this code will
provide support for XML namespaces. |
setNamespaceAware | public void setNamespaceAware(boolean awareness)(Code) | | Specifies that the parser produced by this code will
provide support for XML namespaces. By default the value of this is set
to false .
Parameters: awareness - true if the parser produced by this code willprovide support for XML namespaces; false otherwise. |
|
|