Uses of Interface
javax.xml.transform.ErrorListener
| Package | Description |
|---|---|
| javax.xml.transform | |
| org.apache.xalan.extensions | |
| 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.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 Modifier and Type Method Description abstract ErrorListenerTransformer. getErrorListener()Get the error event handler in effect for the transformation.abstract ErrorListenerTransformerFactory. getErrorListener()Get the error event handler for the TransformerFactory.Methods in javax.xml.transform with parameters of type ErrorListener Modifier and Type Method Description abstract voidTransformer. setErrorListener(ErrorListener listener)Set the error event listener in effect for the transformation.abstract voidTransformerFactory. 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 Modifier and Type Method Description ErrorListenerExpressionContext. getErrorListener()Get the error listener. -
Uses of ErrorListener in org.apache.xalan.processor
Methods in org.apache.xalan.processor that return ErrorListener Modifier and Type Method Description ErrorListenerTransformerFactoryImpl. getErrorListener()Get the error listener in effect for the TransformerFactory.Methods in org.apache.xalan.processor with parameters of type ErrorListener Modifier and Type Method Description voidTransformerFactoryImpl. 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 Constructor Description StylesheetRoot(ErrorListener errorListener)Uses an XSL stylesheet document.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 Modifier and Type Method Description ErrorListenerTransformerIdentityImpl. getErrorListener()Get the error event handler in effect for the transformation.ErrorListenerTransformerImpl. getErrorListener()Get the current error event handler.Methods in org.apache.xalan.transformer with parameters of type ErrorListener Modifier and Type Method Description voidTransformerIdentityImpl. setErrorListener(ErrorListener listener)Set the error event listener in effect for the transformation.voidTransformerImpl. setErrorListener(ErrorListener listener)Set the error event listener.voidTrAXFilter. setErrorListener(ErrorListener handler) -
Uses of ErrorListener in org.apache.xml.utils
Classes in org.apache.xml.utils that implement ErrorListener Modifier and Type Class Description classDefaultErrorHandlerImplement SAX error handler for default reporting. -
Uses of ErrorListener in org.apache.xpath
Methods in org.apache.xpath that return ErrorListener Modifier and Type Method Description ErrorListenerXPathContext. getErrorListener()Get the ErrorListener where errors and warnings are to be reported.ErrorListenerXPathContext.XPathExpressionContext. getErrorListener()Get the error listener.Methods in org.apache.xpath with parameters of type ErrorListener Modifier and Type Method Description voidXPathContext. setErrorListener(ErrorListener listener)Set the ErrorListener where errors and warnings are to be reported.Constructors in org.apache.xpath with parameters of type ErrorListener Constructor Description XPath(String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type, ErrorListener errorListener)Construct an XPath object.XPath(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 Modifier and Type Method Description ErrorListenerXPathParser. getErrorListener()Return the current error listener.Methods in org.apache.xpath.compiler with parameters of type ErrorListener Modifier and Type Method Description voidXPathParser. 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 Constructor Description Compiler(ErrorListener errorHandler, SourceLocator locator, FunctionTable fTable)Construct a Compiler object with a specific ErrorListener and SourceLocator where the expression is located.XPathParser(ErrorListener errorListener, SourceLocator sourceLocator)The parser constructor.