Uses of Interface
javax.xml.transform.ErrorListener

Packages that use ErrorListener
javax.xml.transform   
org.apache.xalan.extensions Implementation of Xalan Extension Mechanism. 
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.templates Implements the Templates interface, and defines a set of classes that represent an XSLT stylesheet. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.xsltc.trax   
org.apache.xml.utils Implementation of Xalan utility classes. 
org.apache.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. 
org.apache.xpath.compiler Implements an XPath parser which produces an OpMap, and a so-called Compiler which produces an expression tree for fast evaluation. 
 

Uses of ErrorListener in javax.xml.transform
 

Methods in javax.xml.transform that return ErrorListener
abstract  ErrorListener Transformer.getErrorListener()
          Get the error event handler in effect for the transformation.
abstract  ErrorListener TransformerFactory.getErrorListener()
          Get the error event handler for the TransformerFactory.
 

Methods in javax.xml.transform with parameters of type ErrorListener
abstract  void Transformer.setErrorListener(ErrorListener listener)
          Set the error event listener in effect for the transformation.
abstract  void TransformerFactory.setErrorListener(ErrorListener listener)
          Set the error event listener for the TransformerFactory, which is used for the processing of transformation instructions, and not for the transformation itself.
 

Uses of ErrorListener in org.apache.xalan.extensions
 

Methods in org.apache.xalan.extensions that return ErrorListener
 ErrorListener ExpressionContext.getErrorListener()
          Get the error listener.
 

Uses of ErrorListener in org.apache.xalan.processor
 

Methods in org.apache.xalan.processor that return ErrorListener
 ErrorListener TransformerFactoryImpl.getErrorListener()
          Get the error listener in effect for the TransformerFactory.
 

Methods in org.apache.xalan.processor with parameters of type ErrorListener
 void TransformerFactoryImpl.setErrorListener(ErrorListener listener)
          Set an error listener for the TransformerFactory.
 

Uses of ErrorListener in org.apache.xalan.templates
 

Constructors in org.apache.xalan.templates with parameters of type ErrorListener
StylesheetRoot.StylesheetRoot(ErrorListener errorListener)
          Uses an XSL stylesheet document.
StylesheetRoot.StylesheetRoot(XSLTSchema schema, ErrorListener listener)
          Creates a StylesheetRoot and retains a pointer to the schema used to create this StylesheetRoot.
 

Uses of ErrorListener in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer that return ErrorListener
 ErrorListener TransformerImpl.getErrorListener()
          Get the current error event handler.
 ErrorListener TransformerIdentityImpl.getErrorListener()
          Get the error event handler in effect for the transformation.
 

Methods in org.apache.xalan.transformer with parameters of type ErrorListener
 void TransformerImpl.setErrorListener(ErrorListener listener)
          Set the error event listener.
 void TransformerIdentityImpl.setErrorListener(ErrorListener listener)
          Set the error event listener in effect for the transformation.
 void TrAXFilter.setErrorListener(ErrorListener handler)
           
 

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

Classes in org.apache.xalan.xsltc.trax that implement ErrorListener
 class TransformerFactoryImpl
          Implementation of a JAXP1.1 TransformerFactory for Translets.
 class TransformerImpl
           
 

Methods in org.apache.xalan.xsltc.trax that return ErrorListener
 ErrorListener SmartTransformerFactoryImpl.getErrorListener()
           
 ErrorListener TransformerFactoryImpl.getErrorListener()
          javax.xml.transform.sax.TransformerFactory implementation.
 ErrorListener TransformerImpl.getErrorListener()
          Implements JAXP's Transformer.getErrorListener() Get the error event handler in effect for the transformation.
 

Methods in org.apache.xalan.xsltc.trax with parameters of type ErrorListener
 void SmartTransformerFactoryImpl.setErrorListener(ErrorListener listener)
           
 void TrAXFilter.setErrorListener(ErrorListener handler)
           
 void TransformerFactoryImpl.setErrorListener(ErrorListener listener)
          javax.xml.transform.sax.TransformerFactory implementation.
 void TransformerImpl.setErrorListener(ErrorListener listener)
          Implements JAXP's Transformer.setErrorListener() Set the error event listener in effect for the transformation.
 

Uses of ErrorListener in org.apache.xml.utils
 

Classes in org.apache.xml.utils that implement ErrorListener
 class DefaultErrorHandler
          Implement SAX error handler for default reporting.
 class ListingErrorHandler
          Sample implementation of similar SAX ErrorHandler and JAXP ErrorListener.
 

Uses of ErrorListener in org.apache.xpath
 

Methods in org.apache.xpath that return ErrorListener
 ErrorListener XPathContext.getErrorListener()
          Get the ErrorListener where errors and warnings are to be reported.
 ErrorListener XPathContext.XPathExpressionContext.getErrorListener()
          Get the error listener.
 

Methods in org.apache.xpath with parameters of type ErrorListener
 void XPathContext.setErrorListener(ErrorListener listener)
          Set the ErrorListener where errors and warnings are to be reported.
 

Constructors in org.apache.xpath with parameters of type ErrorListener
XPath.XPath(java.lang.String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type, ErrorListener errorListener)
          Construct an XPath object.
XPath.XPath(java.lang.String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type, ErrorListener errorListener, FunctionTable aTable)
          Construct an XPath object.
 

Uses of ErrorListener in org.apache.xpath.compiler
 

Methods in org.apache.xpath.compiler that return ErrorListener
 ErrorListener XPathParser.getErrorListener()
          Return the current error listener.
 

Methods in org.apache.xpath.compiler with parameters of type ErrorListener
 void XPathParser.setErrorHandler(ErrorListener handler)
          Allow an application to register an error event handler, where syntax errors will be sent.
 

Constructors in org.apache.xpath.compiler with parameters of type ErrorListener
Compiler.Compiler(ErrorListener errorHandler, SourceLocator locator, FunctionTable fTable)
          Construct a Compiler object with a specific ErrorListener and SourceLocator where the expression is located.
XPathParser.XPathParser(ErrorListener errorListener, SourceLocator sourceLocator)
          The parser constructor.
 



Copyright © 2006 Apache XML Project. All Rights Reserved.