API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.xml.sax. ContentHandler View Source
Author(s)
David Megginson
Since
SAX 2.0
Version
2.0.1+ (sax2r3pre1)
Serial
Hierarchy
 ContentHandler
Subinterfaces
Description
public interface ContentHandler
  Receive notification of the logical content of a document.
Methods
Hide/Show inherited methods
public void characters (char[] ch, int start, int length) throws SAXException
  Receive notification of character data.
public void endDocument () throws SAXException
  Receive notification of the end of a document.
public void endElement (String uri, String localName, String qName) throws SAXException
  Receive notification of the end of an element.
public void endPrefixMapping (String prefix) throws SAXException
  End the scope of a prefix-URI mapping.
public void ignorableWhitespace (char[] ch, int start, int length) throws SAXException
  Receive notification of ignorable whitespace in element content.
public void processingInstruction (String target, String data) throws SAXException
  Receive notification of a processing instruction.
public void setDocumentLocator (Locator locator)
  Receive an object for locating the origin of SAX document events.
public void skippedEntity (String name) throws SAXException
  Receive notification of a skipped entity.
public void startDocument () throws SAXException
  Receive notification of the beginning of a document.
public void startElement (String uri, String localName, String qName, Attributes atts) throws SAXException
  Receive notification of the beginning of an element.
public void startPrefixMapping (String prefix, String uri) throws SAXException
  Begin the scope of a prefix-URI Namespace mapping.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar