Searched refs:DOMErrorHandler (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMErrorHandler.java45 * <code>DOMErrorHandler</code> is a callback interface that the DOM
48 * a document). A <code>DOMErrorHandler</code> object can be attached to a
58 public interface DOMErrorHandler { interface
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMErrorHandlerWrapper.java30 import org.w3c.dom.DOMErrorHandler;
41 * @see DOMErrorHandler
54 implements XMLErrorHandler, DOMErrorHandler {
58 // It keeps the reference of DOMErrorHandler of application
59 protected DOMErrorHandler fDomErrorHandler;
89 public DOMErrorHandlerWrapper(DOMErrorHandler domErrorHandler) {
91 } // DOMErrorHandlerWrapper(DOMErrorHandler domErrorHandler)
99 public void setErrorHandler(DOMErrorHandler errorHandler) {
104 public DOMErrorHandler getErrorHandler(){
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java64 import org.w3c.dom.DOMErrorHandler;
128 protected DOMErrorHandler fErrorHandler;
221 fErrorHandler = (DOMErrorHandler) fConfiguration.getParameter(Constants.DOM_ERROR_HANDLER);
1080 public static final void isCDataWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator,
1180 public static final void isXMLCharWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator,
1243 public static final void isCommentWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator,
1316 public static final void isAttrValueWF(DOMErrorHandler errorHandler, DOMErrorImpl error,
1364 public static final void reportDOMError(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator,
H A DDOMConfigurationImpl.java56 import org.w3c.dom.DOMErrorHandler;
667 if (value instanceof DOMErrorHandler || value == null) {
668 fErrorHandlerWrapper.setErrorHandler((DOMErrorHandler)value);
946 return (value instanceof DOMErrorHandler) ? true : false ;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java44 import org.w3c.dom.DOMErrorHandler;
117 private DOMErrorHandler fErrorHandler = null;
262 if (value == null || value instanceof DOMErrorHandler) {
263 fErrorHandler = (DOMErrorHandler)value;
333 state == null || state instanceof DOMErrorHandler) {
474 * attach a <code>DOMErrorHandler</code> using the parameter
H A DBaseMarkupSerializer.java65 import org.w3c.dom.DOMErrorHandler;
138 protected DOMErrorHandler fDOMErrorHandler;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParserImpl.java61 import org.w3c.dom.DOMErrorHandler;
475 if (value instanceof DOMErrorHandler || value == null) {
477 fErrorHandler = new DOMErrorHandlerWrapper ((DOMErrorHandler) value);
828 if (value instanceof DOMErrorHandler || value == null) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaLoader.java78 import org.w3c.dom.DOMErrorHandler;
1292 if (value instanceof DOMErrorHandler) {
1294 fErrorHandler = new DOMErrorHandlerWrapper((DOMErrorHandler) value);

Completed in 77 milliseconds