com.sun.msv.verifier.jaxp
public class SAXParserFactoryImpl extends SAXParserFactory
This class uses another SAXParserFactory implementation and adds the validation capability to it.
| Constructor Summary | |
|---|---|
| SAXParserFactoryImpl()
Creates a new instance by using the default SAXParserFactory implementation
as the underlying parser. | |
| SAXParserFactoryImpl(SAXParserFactory _factory)
Creates a new instance by specifying the underlying SAXParserFactory
implementation. | |
| SAXParserFactoryImpl(Schema schema)
Creates a new instance by using a default SAXParserFactory implementation
and the specified schema object. | |
| SAXParserFactoryImpl(File schemaAsFile)
Creates a new instance that validates documents against the specified schema. | |
| SAXParserFactoryImpl(InputSource _schema)
Creates a new instance that validates documents against the specified schema. | |
| SAXParserFactoryImpl(String schemaUrl)
Creates a new instance that validates documents against the specified schema. | |
| SAXParserFactoryImpl(SAXParserFactory _factory, Schema _schema) | |
| Method Summary | |
|---|---|
| boolean | getFeature(String name) |
| boolean | isNamespaceAware() |
| boolean | isValidating() |
| SAXParser | newSAXParser() |
| void | setFeature(String name, boolean value) |
| void | setNamespaceAware(boolean awareness) |
| void | setValidating(boolean validating) |