Package org.codehaus.stax2
Interface XMLReporter2
-
- All Superinterfaces:
javax.xml.stream.XMLReporter
public interface XMLReporter2 extends javax.xml.stream.XMLReporter
Extension ofXMLReporter
to allow for better access to information about the actual problem.Note on type of problems reported: although type is
XMLValidationProblem
, it is not strictly related to (optional) validation process. That is, non-fatal problems related to well-formedness (mostly in areas of DTD definition, or in some cases problems that would be fatal normally but have been suppressed by the calling app) will also be reported through this interface if registered.Stax2 implementations are encouraged to always try to call the improved
report
method, and only call the base interface version if registered report is not of typeXMLReporter2
.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
report(XMLValidationProblem problem)
Reporting method called with reference to object that defines exact problem being encountered.
-
-
-
Method Detail
-
report
void report(XMLValidationProblem problem) throws javax.xml.stream.XMLStreamException
Reporting method called with reference to object that defines exact problem being encountered. Implementor is free to quietly handle the problem, or to throw an exception to cause abnormal termination of xml processing.- Throws:
javax.xml.stream.XMLStreamException
-
-