Uses of Interface
org.xml.sax.ErrorHandler

Packages that use ErrorHandler
gnu.xml.aelfred2 This package contains Ælfred2, which includes an enhanced SAX2-compatible version of the Ælfred non-validating XML parser, a modular (and hence optional) DTD validating parser, and modular (and hence optional) JAXP glue to those. 
gnu.xml.pipeline This package exposes a kind of XML processing pipeline, based on sending SAX events, which can be used as components of application architectures. 
gnu.xml.util This package contains XML utilities, including SAX2 XML writers and a parser of DOM trees, plus a command line driver. 
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.ext This package contains interfaces to SAX2 facilities that conformant SAX drivers won't necessarily support. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of ErrorHandler in gnu.xml.aelfred2
 

Methods in gnu.xml.aelfred2 that return ErrorHandler
 ErrorHandler SAXDriver.getErrorHandler()
          SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning); this is never null;
 ErrorHandler XmlReader.getErrorHandler()
          SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning); this is never null;
 

Methods in gnu.xml.aelfred2 with parameters of type ErrorHandler
 void SAXDriver.setErrorHandler(ErrorHandler handler)
          SAX1, SAX2: Set the error handler for this parser.
 void XmlReader.setErrorHandler(ErrorHandler handler)
          SAX1 Assigns error handler
 

Uses of ErrorHandler in gnu.xml.pipeline
 

Methods in gnu.xml.pipeline that return ErrorHandler
 ErrorHandler EventFilter.getErrorHandler()
          Returns the error handler assigned this filter stage, or null if no such assigment has been made.
 

Methods in gnu.xml.pipeline with parameters of type ErrorHandler
 void CallFilter.setErrorHandler(ErrorHandler handler)
          Assigns the error handler to be used to present most fatal errors.
 void DomConsumer.setErrorHandler(ErrorHandler handler)
           
 void EventConsumer.setErrorHandler(ErrorHandler handler)
          This method provides a filter stage with a handler that abstracts presentation of warnings and both recoverable and fatal errors.
 void EventFilter.setErrorHandler(ErrorHandler handler)
          Records the error handler that should be used by this stage, and passes it "downstream" to any subsequent stage.
 void TeeConsumer.setErrorHandler(ErrorHandler handler)
          Provides the error handler to both subsequent nodes of this filter stage.
 

Uses of ErrorHandler in gnu.xml.util
 

Methods in gnu.xml.util that return ErrorHandler
 ErrorHandler DomParser.getErrorHandler()
          SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning).
 

Methods in gnu.xml.util with parameters of type ErrorHandler
 void DomParser.setErrorHandler(ErrorHandler handler)
          SAX1: Provides an object which receives callbacks for XML errors of all levels (fatal, nonfatal, warning).
 void XMLWriter.setErrorHandler(ErrorHandler handler)
          Assigns the error handler to be used to present most fatal errors.
 

Uses of ErrorHandler in org.xml.sax
 

Classes in org.xml.sax that implement ErrorHandler
 class HandlerBase
          Deprecated. This class works with the deprecated DocumentHandler interface. It has been replaced by the SAX2 DefaultHandler class.
 

Methods in org.xml.sax that return ErrorHandler
 ErrorHandler XMLReader.getErrorHandler()
          Return the current error handler.
 

Methods in org.xml.sax with parameters of type ErrorHandler
 void XMLReader.setErrorHandler(ErrorHandler handler)
          Allow an application to register an error event handler.
 void Parser.setErrorHandler(ErrorHandler handler)
          Deprecated. Allow an application to register an error event handler.
 

Uses of ErrorHandler in org.xml.sax.ext
 

Classes in org.xml.sax.ext that implement ErrorHandler
 class DefaultHandler2
          This class extends the SAX2 base handler class to support the SAX2 LexicalHandler and DeclHandler extensions.
 

Uses of ErrorHandler in org.xml.sax.helpers
 

Classes in org.xml.sax.helpers that implement ErrorHandler
 class DefaultHandler
          Default base class for SAX2 event handlers.
 class XMLFilterImpl
          Base class for deriving an XML filter.
 

Methods in org.xml.sax.helpers that return ErrorHandler
 ErrorHandler XMLFilterImpl.getErrorHandler()
          Get the current error event handler.
 ErrorHandler ParserAdapter.getErrorHandler()
          Return the current error handler.
 

Methods in org.xml.sax.helpers with parameters of type ErrorHandler
 void XMLReaderAdapter.setErrorHandler(ErrorHandler handler)
          Register the error event handler.
 void XMLFilterImpl.setErrorHandler(ErrorHandler handler)
          Set the error event handler.
 void ParserAdapter.setErrorHandler(ErrorHandler handler)
          Set the error handler.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2008-10-18.