DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10607>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10607

ant compile-dom3 fails

           Summary: ant compile-dom3 fails
           Product: Xerces2-J
           Version: 2.0.2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: DOM
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
                CC: [EMAIL PROTECTED]


ant compile-dom3 fails because of incorrect import of DOMError and
DOMErrorHandler. This happens in org.apache.xerces.dom3.ls files
DOMWriter.java,DOMBulder.java and ParseErrorEvent.java.

Including the patch which has the fix.

-vivek.

---------- patch file------
Index: xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMBuilder.java
===================================================================
RCS file:
/home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMBuilder.java,v
retrieving revision 1.1
diff -c -r1.1 DOMBuilder.java
*** xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMBuilder.java       13 Nov
2001 02:00:59 -00001.1
--- xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMBuilder.java       9 Jul
2002 19:47:45 -0000
***************
*** 15,22 ****
  import org.w3c.dom.Document;
  import org.w3c.dom.Node;
  import org.w3c.dom.DOMException;
! import org.apache.xerces.dom3.DOMErrorHandler;
! 
  /**
   * A interface to an object that is able to build a DOM tree from various 
   * input sources.
--- 15,21 ----
  import org.w3c.dom.Document;
  import org.w3c.dom.Node;
  import org.w3c.dom.DOMException;
! import org.w3c.dom.DOMErrorHandler;
  /**
   * A interface to an object that is able to build a DOM tree from various 
   * input sources.
Index: xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMWriter.java
===================================================================
RCS file:
/home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMWriter.java,v
retrieving revision 1.2
diff -c -r1.2 DOMWriter.java
*** xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMWriter.java        10 Jun
2002 19:15:11 -00001.2
--- xml-xerces/java/src/org/apache/xerces/dom3/ls/DOMWriter.java        9 Jul
2002 19:47:45 -0000
***************
*** 14,20 ****
  
  import org.w3c.dom.Node;
  import org.w3c.dom.DOMException;
! import org.apache.xerces.dom3.DOMErrorHandler;
  
  /**
   *  DOMWriter provides an API for serializing (writing) a DOM document out in 
--- 14,20 ----
  
  import org.w3c.dom.Node;
  import org.w3c.dom.DOMException;
! import org.w3c.dom.DOMErrorHandler;
  
  /**
   *  DOMWriter provides an API for serializing (writing) a DOM document out in 
Index: xml-xerces/java/src/org/apache/xerces/dom3/ls/ParseErrorEvent.java
===================================================================
RCS file:
/home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom3/ls/ParseErrorEvent.java,v
retrieving revision 1.1
diff -c -r1.1 ParseErrorEvent.java
*** xml-xerces/java/src/org/apache/xerces/dom3/ls/ParseErrorEvent.java  13 Nov
2001 02:00:59 -00001.1
--- xml-xerces/java/src/org/apache/xerces/dom3/ls/ParseErrorEvent.java  9 Jul
2002 19:47:45 -0000
***************
*** 13,19 ****
  package org.apache.xerces.dom3.ls;
  
  import org.w3c.dom.events.Event;
! import org.apache.xerces.dom3.DOMError;
  
  /**
   * ParseErrorEvent is the event that is fired if there's an error in the XML 
--- 13,19 ----
  package org.apache.xerces.dom3.ls;
  
  import org.w3c.dom.events.Event;
! import org.w3c.dom.DOMError;
  
  /**
   * ParseErrorEvent is the event that is fired if there's an error in the XML

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to