org.ccil.cowan.tagsoup.jaxp

Class SAXParserImpl

public class SAXParserImpl extends SAXParser

This is a simple implementation of JAXP SAXParser, to allow easier integration of TagSoup with the default JDK xml processing stack.

Author: Tatu Saloranta (cowtowncoder@yahoo.com)

Constructor Summary
protected SAXParserImpl()
Method Summary
booleangetFeature(String name)
ParsergetParser()
To support SAX1 interface, we'll need to use an adapter.
ObjectgetProperty(String name)
XMLReadergetXMLReader()
booleanisNamespaceAware()
booleanisValidating()
static SAXParserImplnewInstance(Map features)
voidsetFeature(String name, boolean value)
voidsetProperty(String name, Object value)

Constructor Detail

SAXParserImpl

protected SAXParserImpl()

Method Detail

getFeature

public boolean getFeature(String name)

getParser

public Parser getParser()

Deprecated:

To support SAX1 interface, we'll need to use an adapter.

getProperty

public Object getProperty(String name)

getXMLReader

public XMLReader getXMLReader()

isNamespaceAware

public boolean isNamespaceAware()

isValidating

public boolean isValidating()

newInstance

public static SAXParserImpl newInstance(Map features)

setFeature

public void setFeature(String name, boolean value)

setProperty

public void setProperty(String name, Object value)
Licence: Academic Free License 3.0 and/or GPL 2.0