API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.xml.sax. DocumentHandler View Source
Author(s)
David Megginson
Since
SAX 1.0
Version
2.0.1 (sax2r2)
Serial
Hierarchy
 DocumentHandler
Subinterfaces
Description
public interface DocumentHandler
  Receive notification of general document events.
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 name) throws SAXException
  Receive notification of the end of an element.
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 startDocument () throws SAXException
  Receive notification of the beginning of a document.
public void startElement (String name, AttributeList atts) throws SAXException
  Receive notification of the beginning of an element.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar