Uses of Interface
javax.xml.transform.ErrorListener

Packages that use ErrorListener
javax.xml.transform This package defines the generic APIs for processing transformation instructions, and performing a transformation from source to result. 
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.runtime   
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.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 TransformerIdentityImpl.getErrorListener()
          Get the error event handler in effect for the transformation.
 ErrorListener TransformerImpl.getErrorListener()
          Get the current error event handler.
 

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

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

Methods in org.apache.xalan.xsltc.runtime that return ErrorListener
 ErrorListener TransformerFactoryImpl.getErrorListener()
           
 ErrorListener AbstractTranslet.getErrorListener()
           
 

Methods in org.apache.xalan.xsltc.runtime with parameters of type ErrorListener
 void TransformerFactoryImpl.setErrorListener(ErrorListener listener)
           
 void AbstractTranslet.setErrorListener(ErrorListener listener)
           
 

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.
 

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.
 

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.
 

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)
          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 © 2000 Apache XML Project. All Rights Reserved.