XMLErrorHandler
and make it look like a SAX ErrorHandler
.
The derived class should override the getErrorHandler()
method
so that it will return the correct XMLErrorHandler
instance.
This method will be called whenever an error/warning is found.
Experience shows that it is better to store the actual
XMLErrorHandler
in one place and looks up that variable,
rather than copying it into every component that needs an error handler
and update all of them whenever it is changed, IMO.
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public void | error(SAXParseException
The error information encapsulated in a
SAX parse exception. e)Implements org. Receive notification of a recoverable error. |
public void | fatalError(SAXParseException
The error information encapsulated in a
e)SAXParseException .Implements org. Receive notification of a non-recoverable, fatal error. |
protected abstract XMLErrorHandler | |
public void | warning(SAXParseException
The warning information encapsulated in a
SAX parse exception. e)Implements org. Receive notification of a warning. |
ErrorHandlerProxy | back to summary |
---|---|
public ErrorHandlerProxy() |
error | back to summary |
---|---|
public void error(SAXParseException e) throws SAXException Implements org. Doc from org. Receive notification of a recoverable error. This corresponds to the definition of "error" in section 1.2 of the W3C XML 1.0 Recommendation. For example, a validating parser would use this callback to report the violation of a validity constraint. The default behaviour is to take no action. The SAX parser must continue to provide normal parsing events after invoking this method: it should still be possible for the application to process the document through to the end. If the application cannot do so, then the parser should report a fatal error even if the XML recommendation does not require it to do so. Filters may use this method to report other, non-XML errors as well.
|
fatalError | back to summary |
---|---|
public void fatalError(SAXParseException e) throws SAXException Implements org. Doc from org. Receive notification of a non-recoverable, fatal error. As defined in section 1.2 of the W3C XML 1.0 Recommendation, fatal errors are those that would make it impossible for a parser to continue normal processing. These include violation of a well-formedness constraint, invalid encoding, and forbidden structural errors as described in the W3C XML 1.0 Recommendation.
|
getErrorHandler | back to summary |
---|---|
protected abstract XMLErrorHandler getErrorHandler() |
warning | back to summary |
---|---|
public void warning(SAXParseException e) throws SAXException Implements org. Doc from org. Receive notification of a warning. SAX parsers will use this method to report conditions that are not errors or fatal errors as defined by the XML recommendation. The default behaviour is to take no action. The SAX parser must continue to provide normal parsing events after invoking this method: it should still be possible for the application to process the document through to the end. Filters may use this method to report other, non-XML warnings as well.
|