public class

SAXParserFactoryImpl

extends SAXParserFactory
java.lang.Object
   ↳ javax.xml.parsers.SAXParserFactory
     ↳ org.apache.xerces.jaxp.SAXParserFactoryImpl

Class Overview

This is the implementation specific class for the javax.xml.parsers.SAXParserFactory. This is the platform default implementation for the platform.

Summary

Public Constructors
SAXParserFactoryImpl()
Public Methods
boolean getFeature(String name)
returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.
Schema getSchema()
boolean isXIncludeAware()
SAXParser newSAXParser()
Creates a new instance of SAXParser using the currently configured factory parameters.
void setFeature(String name, boolean value)
Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader.
void setSchema(Schema grammar)
void setXIncludeAware(boolean state)
[Expand]
Inherited Methods
From class javax.xml.parsers.SAXParserFactory
From class java.lang.Object

Public Constructors

public SAXParserFactoryImpl ()

Public Methods

public boolean getFeature (String name)

returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.

Throws
ParserConfigurationException
SAXNotRecognizedException
SAXNotSupportedException

public Schema getSchema ()

public boolean isXIncludeAware ()

public SAXParser newSAXParser ()

Creates a new instance of SAXParser using the currently configured factory parameters.

Returns
  • javax.xml.parsers.SAXParser
Throws
ParserConfigurationException

public void setFeature (String name, boolean value)

Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader.

Throws
ParserConfigurationException
SAXNotRecognizedException
SAXNotSupportedException

public void setSchema (Schema grammar)

public void setXIncludeAware (boolean state)