ValidationEventpublic interface ValidationEvent This event indicates that a problem was encountered while validating the
incoming XML data during an unmarshal operation, while performing
on-demand validation of the Java content tree, or while marshalling the
Java content tree back to XML data. |
Fields Summary |
---|
public static final int | WARNINGConditions that are not errors or fatal errors as defined by the
XML 1.0 recommendation | public static final int | ERRORConditions that correspond to the definition of "error" in section
1.2 of the W3C XML 1.0 Recommendation | public static final int | FATAL_ERRORConditions that correspond to the definition of "fatal error" in section
1.2 of the W3C XML 1.0 Recommendation |
Methods Summary |
---|
public java.lang.Throwable | getLinkedException()Retrieve the linked exception for this warning/error.
| public javax.xml.bind.ValidationEventLocator | getLocator()Retrieve the locator for this warning/error.
| public java.lang.String | getMessage()Retrieve the text message for this warning/error.
| public int | getSeverity()Retrieve the severity code for this warning/error.
Must be one of ValidationError.WARNING,
ValidationError.ERROR, or ValidationError.FATAL_ERROR.
|
|