Uses of Interface
org.xml.sax.ErrorHandler

Packages that use ErrorHandler
javax.xml.parsers   
javax.xml.validation   
org.apache.xalan.lib.sql Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through a "streamable" result set. 
org.apache.xalan.processor Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.xsltc.dom   
org.apache.xalan.xsltc.runtime   
org.apache.xalan.xsltc.trax   
org.apache.xml.dtm   
org.apache.xml.dtm.ref   
org.apache.xml.dtm.ref.dom2dtm   
org.apache.xml.dtm.ref.sax2dtm   
org.apache.xml.serializer Processes SAX events into streams. 
org.apache.xml.utils Implementation of Xalan utility classes. 
org.xml.sax   
org.xml.sax.ext   
org.xml.sax.helpers   
 

Uses of ErrorHandler in javax.xml.parsers
 

Methods in javax.xml.parsers with parameters of type ErrorHandler
abstract  void DocumentBuilder.setErrorHandler(ErrorHandler eh)
          Specify the ErrorHandler to be used by the parser.
 

Uses of ErrorHandler in javax.xml.validation
 

Methods in javax.xml.validation that return ErrorHandler
abstract  ErrorHandler SchemaFactory.getErrorHandler()
          Gets the current ErrorHandler set to this SchemaFactory.
abstract  ErrorHandler Validator.getErrorHandler()
          Gets the current ErrorHandler set to this Validator.
abstract  ErrorHandler ValidatorHandler.getErrorHandler()
          Gets the current ErrorHandler set to this ValidatorHandler.
 

Methods in javax.xml.validation with parameters of type ErrorHandler
abstract  void SchemaFactory.setErrorHandler(ErrorHandler errorHandler)
          Sets the ErrorHandler to receive errors encountered during the newSchema method invocation.
abstract  void Validator.setErrorHandler(ErrorHandler errorHandler)
          Sets the ErrorHandler to receive errors encountered during the validate method invocation.
abstract  void ValidatorHandler.setErrorHandler(ErrorHandler errorHandler)
          Sets the ErrorHandler to receive errors encountered during the validation.
 

Uses of ErrorHandler in org.apache.xalan.lib.sql
 

Methods in org.apache.xalan.lib.sql that return ErrorHandler
 ErrorHandler DTMDocument.getErrorHandler()
           
 

Uses of ErrorHandler in org.apache.xalan.processor
 

Classes in org.apache.xalan.processor that implement ErrorHandler
 class StylesheetHandler
          Initializes and processes a stylesheet via SAX events.
 

Uses of ErrorHandler in org.apache.xalan.transformer
 

Classes in org.apache.xalan.transformer that implement ErrorHandler
 class TransformerHandlerImpl
          A TransformerHandler listens for SAX ContentHandler parse events and transforms them to a Result.
 class TrAXFilter
           
 

Uses of ErrorHandler in org.apache.xalan.xsltc.dom
 

Classes in org.apache.xalan.xsltc.dom that implement ErrorHandler
 class AdaptiveResultTreeImpl
          AdaptiveResultTreeImpl is a adaptive DOM model for result tree fragments (RTF).
 class SAXImpl
          SAXImpl is the core model for SAX input source.
 class SimpleResultTreeImpl
          This class represents a light-weight DOM model for simple result tree fragment(RTF).
 

Methods in org.apache.xalan.xsltc.dom that return ErrorHandler
 ErrorHandler SimpleResultTreeImpl.getErrorHandler()
           
 ErrorHandler AdaptiveResultTreeImpl.getErrorHandler()
           
 

Uses of ErrorHandler in org.apache.xalan.xsltc.runtime
 

Classes in org.apache.xalan.xsltc.runtime that implement ErrorHandler
 class StringValueHandler
           
 

Uses of ErrorHandler in org.apache.xalan.xsltc.trax
 

Methods in org.apache.xalan.xsltc.trax that return ErrorHandler
 ErrorHandler DOM2SAX.getErrorHandler()
          This class is only used internally so this method should never be called.
 ErrorHandler DOM2TO.getErrorHandler()
          This class is only used internally so this method should never be called.
 

Methods in org.apache.xalan.xsltc.trax with parameters of type ErrorHandler
 void DOM2SAX.setErrorHandler(ErrorHandler handler)
          This class is only used internally so this method should never be called.
 void DOM2TO.setErrorHandler(ErrorHandler handler)
          This class is only used internally so this method should never be called.
 

Uses of ErrorHandler in org.apache.xml.dtm
 

Methods in org.apache.xml.dtm that return ErrorHandler
 ErrorHandler DTM.getErrorHandler()
          Return this DTM's ErrorHandler, if it has one.
 

Uses of ErrorHandler in org.apache.xml.dtm.ref
 

Classes in org.apache.xml.dtm.ref that implement ErrorHandler
 class IncrementalSAXSource_Filter
          IncrementalSAXSource_Filter implements IncrementalSAXSource, using a standard SAX2 event source as its input and parcelling out those events gradually in reponse to deliverMoreNodes() requests.
 

Methods in org.apache.xml.dtm.ref that return ErrorHandler
 ErrorHandler DTMDocumentImpl.getErrorHandler()
          Return this DTM's ErrorHandler.
 

Methods in org.apache.xml.dtm.ref with parameters of type ErrorHandler
 void IncrementalSAXSource_Filter.setErrHandler(ErrorHandler handler)
           
 

Uses of ErrorHandler in org.apache.xml.dtm.ref.dom2dtm
 

Methods in org.apache.xml.dtm.ref.dom2dtm that return ErrorHandler
 ErrorHandler DOM2DTM.getErrorHandler()
          Return this DTM's ErrorHandler.
 

Uses of ErrorHandler in org.apache.xml.dtm.ref.sax2dtm
 

Classes in org.apache.xml.dtm.ref.sax2dtm that implement ErrorHandler
 class SAX2DTM
          This class implements a DTM that tends to be optimized more for speed than for compactness, that is constructed via SAX2 ContentHandler events.
 class SAX2DTM2
          SAX2DTM2 is an optimized version of SAX2DTM which is used in non-incremental situation.
 class SAX2RTFDTM
          This is a subclass of SAX2DTM which has been modified to meet the needs of Result Tree Frameworks (RTFs).
 

Methods in org.apache.xml.dtm.ref.sax2dtm that return ErrorHandler
 ErrorHandler SAX2DTM.getErrorHandler()
          Return this DTM's ErrorHandler.
 

Uses of ErrorHandler in org.apache.xml.serializer
 

Subinterfaces of ErrorHandler in org.apache.xml.serializer
 interface SerializationHandler
          This interface is the one that a serializer implements.
 

Classes in org.apache.xml.serializer that implement ErrorHandler
 class EmptySerializer
          This class is an adapter class.
 class SerializerBase
          This class acts as a base class for the XML "serializers" and the stream serializers.
 class ToHTMLSAXHandler
          Deprecated. As of Xalan 2.7.1, replaced by the use of ToXMLSAXHandler.
 class ToHTMLStream
          This serializer takes a series of SAX or SAX-like events and writes its output to the given stream.
 class ToSAXHandler
          This class is used to provide a base behavior to be inherited by other To...SAXHandler serializers.
 class ToStream
          This abstract class is a base class for other stream serializers (xml, html, text ...) that write output to a stream.
 class ToTextSAXHandler
          Deprecated. As of Xalan 2.7.1, replaced by the use of ToXMLSAXHandler.
 class ToTextStream
          This class is not a public API.
 class ToUnknownStream
          This class wraps another SerializationHandler.
 class ToXMLSAXHandler
          This class receives notification of SAX-like events, and with gathered information over these calls it will invoke the equivalent SAX methods on a handler, the ultimate xsl:output method is known to be "xml".
 class ToXMLStream
          This class converts SAX or SAX-like calls to a serialized xml document.
 

Uses of ErrorHandler in org.apache.xml.utils
 

Classes in org.apache.xml.utils that implement ErrorHandler
 class DefaultErrorHandler
          Implement SAX error handler for default reporting.
 class ListingErrorHandler
          Sample implementation of similar SAX ErrorHandler and JAXP ErrorListener.
 class StylesheetPIHandler
          Search for the xml-stylesheet processing instructions in an XML document.
 

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, DeclHandler, and EntityResolver2 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 XMLFilterImpl.setErrorHandler(ErrorHandler handler)
          Set the error event handler.
 void ParserAdapter.setErrorHandler(ErrorHandler handler)
          Set the error handler.
 void XMLReaderAdapter.setErrorHandler(ErrorHandler handler)
          Register the error event handler.
 



Copyright © 2006 Apache XML Project. All Rights Reserved.