You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by "Timm, Sean" <ST...@mailgo.com> on 2000/01/06 00:00:03 UTC

DTM.java Update

I had to add a stub method to DTM.java to get Xalan to compile since Xerce's
XMLParser class was updated.  There are also several problems from the
Serialize class changes in Xerces.  Is anyone working on getting these
fixed?  I've made some modifications locally and got it to compile, but I
don't know enough about the system to think I actually did anything
correctly.  The fact that the XSL I'm processing doesn't seem to be coming
out right seems to confirm that.  :)

Here's the diff:
Index: DTM.java
===================================================================
RCS file:
/home/cvspublic/xml-xalan/src/org/apache/xalan/xpath/dtm/DTM.java,v
retrieving revision 1.7
diff -c -r1.7 DTM.java
*** DTM.java	1999/12/16 09:06:05	1.7
--- DTM.java	2000/01/05 22:51:29
***************
*** 1109,1114 ****
--- 1109,1119 ----
    {
    }
    
+   /** Report when the internal subset is completely scanned. */
+   public final void internalSubset(int internalSubset)
+   {
+   }
+   
    /** Start entity reference. */
    public final void startEntityReference(int entityName, int entityType,
                                     int entityContext) throws Exception 

- Sean T.