|
|||||||||
| Home >> All >> org >> apache >> xerces >> [ dom3 overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.xerces.dom3
Interface DOMError

- public interface DOMError
DOMError is an interface that describes an error.
See also the Document Object Model (DOM) Level 3 Core Specification.
- Since:
- DOM Level 3
| Field Summary | |
static short |
SEVERITY_ERROR
The severity of the error described by the DOMError is
error. |
static short |
SEVERITY_FATAL_ERROR
The severity of the error described by the DOMError is
fatal error. |
static short |
SEVERITY_WARNING
The severity of the error described by the DOMError is
warning. |
| Method Summary | |
DOMLocator |
getLocation()
The location of the error. |
java.lang.String |
getMessage()
An implementation specific string describing the error that occurred. |
java.lang.Object |
getRelatedData()
The related DOMError.type dependent data if any. |
java.lang.Object |
getRelatedException()
The related platform dependent exception if any. |
short |
getSeverity()
The severity of the error, either SEVERITY_WARNING,
SEVERITY_ERROR, or SEVERITY_FATAL_ERROR. |
java.lang.String |
getType()
A DOMString indicating which related data is expected in
relatedData. |
| Field Detail |
SEVERITY_WARNING
public static final short SEVERITY_WARNING
- The severity of the error described by the
DOMErroris warning. ASEVERITY_WARNINGwill not cause the processing to stop, unlessDOMErrorHandler.handleError()returnsfalse.- See Also:
- Constant Field Values
SEVERITY_ERROR
public static final short SEVERITY_ERROR
- The severity of the error described by the
DOMErroris error. ASEVERITY_ERRORmay not cause the processing to stop if the error can be recovered, unlessDOMErrorHandler.handleError()returnsfalse.- See Also:
- Constant Field Values
SEVERITY_FATAL_ERROR
public static final short SEVERITY_FATAL_ERROR
- The severity of the error described by the
DOMErroris fatal error. ASEVERITY_FATAL_ERRORwill cause the normal processing to stop and the return value ofDOMErrorHandler.handleError()is ignored. If the implementation chooses to continue, the behavior is undefined.- See Also:
- Constant Field Values
| Method Detail |
getSeverity
public short getSeverity()
- The severity of the error, either
SEVERITY_WARNING,SEVERITY_ERROR, orSEVERITY_FATAL_ERROR.
getMessage
public java.lang.String getMessage()
- An implementation specific string describing the error that occurred.
getType
public java.lang.String getType()
- A
DOMStringindicating which related data is expected inrelatedData. Users should refer to the specification of the error in order to find itsDOMStringtype andrelatedDatadefinitions if any.Note: As an example,
Document.normalizeDocument()does generate warnings when the "split-cdata-sections" parameter is in use. Therefore, the method generates aSEVERITY_WARNINGwithtype"cdata-section-splitted"and the firstCDATASectionnode in document order resulting from the split is returned by therelatedDataattribute.
getRelatedException
public java.lang.Object getRelatedException()
- The related platform dependent exception if any.
getRelatedData
public java.lang.Object getRelatedData()
- The related
DOMError.typedependent data if any.
getLocation
public DOMLocator getLocation()
- The location of the error.
|
|||||||||
| Home >> All >> org >> apache >> xerces >> [ dom3 overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC