Uses of Interface
org.w3c.dom.DOMErrorHandler

Packages that use DOMErrorHandler
org.apache.xerces.dom   
org.apache.xerces.util   
 

Uses of DOMErrorHandler in org.apache.xerces.dom
 

Methods in org.apache.xerces.dom with parameters of type DOMErrorHandler
static void DOMNormalizer.isAttrValueWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, NamedNodeMap attributes, Attr a, java.lang.String value, boolean xml11Version)
          NON-DOM: check if attribute value is well-formed
static void DOMNormalizer.isCDataWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, java.lang.String datavalue, boolean isXML11Version)
          Check if CDATA section is well-formed
static void DOMNormalizer.isCommentWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, java.lang.String datavalue, boolean isXML11Version)
          NON-DOM: check if value of the comment is well-formed
static void DOMNormalizer.isXMLCharWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, java.lang.String datavalue, boolean isXML11Version)
          NON-DOM: check for valid XML characters as per the XML version
static void DOMNormalizer.reportDOMError(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, java.lang.String message, short severity, java.lang.String type)
          Reports a DOM error to the user handler.
 

Uses of DOMErrorHandler in org.apache.xerces.util
 

Classes in org.apache.xerces.util that implement DOMErrorHandler
 class DOMErrorHandlerWrapper
          This class handles DOM errors .
 

Methods in org.apache.xerces.util that return DOMErrorHandler
 DOMErrorHandler DOMErrorHandlerWrapper.getErrorHandler()
           
 

Methods in org.apache.xerces.util with parameters of type DOMErrorHandler
 void DOMErrorHandlerWrapper.setErrorHandler(DOMErrorHandler errorHandler)
          Sets the DOM error handler.
 

Constructors in org.apache.xerces.util with parameters of type DOMErrorHandler
DOMErrorHandlerWrapper(DOMErrorHandler domErrorHandler)