API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.xml.sax. HandlerBase View Source
Author(s)
David Megginson
Since
SAX 1.0
Version
2.0.1 (sax2r2)
Serial
Hierarchy
 Object
      HandlerBase
Implements
 EntityResolver
 DTDHandler
 DocumentHandler
 ErrorHandler
Subclasses
Description
public class HandlerBase
  Default base class for handlers.
Constructors
public HandlerBase ()
Methods
Hide/Show inherited methods
public void characters (char[] ch, int start, int length) throws SAXException [Specified in DocumentHandler]
  Receive notification of character data inside an element.
public void endDocument () throws SAXException [Specified in DocumentHandler]
  Receive notification of the end of the document.
public void endElement (String name) throws SAXException [Specified in DocumentHandler]
  Receive notification of the end of an element.
public void error (SAXParseException e) throws SAXException [Specified in ErrorHandler]
  Receive notification of a recoverable parser error.
public void fatalError (SAXParseException e) throws SAXException [Specified in ErrorHandler]
  Report a fatal XML parsing error.
public void ignorableWhitespace (char[] ch, int start, int length) throws SAXException [Specified in DocumentHandler]
  Receive notification of ignorable whitespace in element content.
public void notationDecl (String name, String publicId, String systemId) [Specified in DTDHandler]
  Receive notification of a notation declaration.
public void processingInstruction (String target, String data) throws SAXException [Specified in DocumentHandler]
  Receive notification of a processing instruction.
public InputSource resolveEntity (String publicId, String systemId) throws SAXException [Specified in EntityResolver]
  Resolve an external entity.
public void setDocumentLocator (Locator locator) [Specified in DocumentHandler]
  Receive a Locator object for document events.
public void startDocument () throws SAXException [Specified in DocumentHandler]
  Receive notification of the beginning of the document.
public void startElement (String name, AttributeList attributes) throws SAXException [Specified in DocumentHandler]
  Receive notification of the start of an element.
public void unparsedEntityDecl (String name, String publicId, String systemId, String notationName) [Specified in DTDHandler]
  Receive notification of an unparsed entity declaration.
public void warning (SAXParseException e) throws SAXException [Specified in ErrorHandler]
  Receive notification of a parser warning.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar