Package jadex.xml.stax
Interface XMLReporter
- 
- All Known Implementing Classes:
- StaxXMLReporterWrapper
 
 public interface XMLReporterStax API: XMLReporter
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreport(java.lang.String message, java.lang.String errorType, java.lang.Object relatedInformation, ILocation location)Report the desired message in an application specific format.
 
- 
- 
- 
Method Detail- 
reportvoid report(java.lang.String message, java.lang.String errorType, java.lang.Object relatedInformation, ILocation location) throws java.lang.ExceptionReport the desired message in an application specific format. Only warnings and non-fatal errors should be reported through this interface. Fatal errors should be thrown as XMLStreamException.- Parameters:
- message- the error message
- errorType- an implementation defined error type
- relatedInformation- information related to the error, if available
- location- the location of the error, if available
- Throws:
- javax.xml.stream.XMLStreamException
- java.lang.Exception
 
 
- 
 
-