API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.xml.sax.helpers. XMLFilterImpl View Source
Author(s)
David Megginson
Since
SAX 2.0
Version
2.0.1 (sax2r2)
Serial
Hierarchy
 Object
      XMLFilterImpl
Implements
 XMLFilter
 EntityResolver
 DTDHandler
 ContentHandler
 ErrorHandler
Subclasses
Description
public class XMLFilterImpl
  Base class for deriving an XML filter.
Constructors
public XMLFilterImpl ()
  Construct an empty XML filter, with no parent.
public XMLFilterImpl (XMLReader parent)
  Construct an XML filter with the specified parent.
Methods
Hide/Show inherited methods
public void characters (char[] ch, int start, int length) throws SAXException [Specified in ContentHandler]
  Filter a character data event.
public void endDocument () throws SAXException [Specified in ContentHandler]
  Filter an end document event.
public void endElement (String uri, String localName, String qName) throws SAXException [Specified in ContentHandler]
  Filter an end element event.
public void endPrefixMapping (String prefix) throws SAXException [Specified in ContentHandler]
  Filter an end Namespace prefix mapping event.
public void error (SAXParseException e) throws SAXException [Specified in ErrorHandler]
  Filter an error event.
public void fatalError (SAXParseException e) throws SAXException [Specified in ErrorHandler]
  Filter a fatal error event.
public ContentHandler getContentHandler ()
  Get the content event handler.
public DTDHandler getDTDHandler ()
  Get the current DTD event handler.
public EntityResolver getEntityResolver ()
  Get the current entity resolver.
public ErrorHandler getErrorHandler ()
  Get the current error event handler.
public boolean getFeature (String name) throws SAXNotRecognizedException SAXNotSupportedException
  Look up the value of a feature.
public XMLReader getParent () [Specified in XMLFilter]
  Get the parent reader.
public Object getProperty (String name) throws SAXNotRecognizedException SAXNotSupportedException
  Look up the value of a property.
public void ignorableWhitespace (char[] ch, int start, int length) throws SAXException [Specified in ContentHandler]
  Filter an ignorable whitespace event.
public void notationDecl (String name, String publicId, String systemId) throws SAXException [Specified in DTDHandler]
  Filter a notation declaration event.
public void parse (InputSource input) throws SAXException IOException
  Parse a document.
public void parse (String systemId) throws SAXException IOException
  Parse a document.
public void processingInstruction (String target, String data) throws SAXException [Specified in ContentHandler]
  Filter a processing instruction event.
public InputSource resolveEntity (String publicId, String systemId) throws SAXException IOException [Specified in EntityResolver]
  Filter an external entity resolution.
public void setContentHandler (ContentHandler handler)
  Set the content event handler.
public void setDocumentLocator (Locator locator) [Specified in ContentHandler]
  Filter a new document locator event.
public void setDTDHandler (DTDHandler handler)
  Set the DTD event handler.
public void setEntityResolver (EntityResolver resolver)
  Set the entity resolver.
public void setErrorHandler (ErrorHandler handler)
  Set the error event handler.
public void setFeature (String name, boolean value) throws SAXNotRecognizedException SAXNotSupportedException
  Set the value of a feature.
public void setParent (XMLReader parent) [Specified in XMLFilter]
  Set the parent reader.
public void setProperty (String name, Object value) throws SAXNotRecognizedException SAXNotSupportedException
  Set the value of a property.
public void skippedEntity (String name) throws SAXException [Specified in ContentHandler]
  Filter a skipped entity event.
public void startDocument () throws SAXException [Specified in ContentHandler]
  Filter a start document event.
public void startElement (String uri, String localName, String qName, Attributes atts) throws SAXException [Specified in ContentHandler]
  Filter a start element event.
public void startPrefixMapping (String prefix, String uri) throws SAXException [Specified in ContentHandler]
  Filter a start Namespace prefix mapping event.
public void unparsedEntityDecl (String name, String publicId, String systemId, String notationName) throws SAXException [Specified in DTDHandler]
  Filter an unparsed entity declaration event.
public void warning (SAXParseException e) throws SAXException [Specified in ErrorHandler]
  Filter a warning event.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar