You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by jk...@apache.org on 2001/10/05 23:37:08 UTC

cvs commit: xml-xalan/java/src/org/apache/xml/dtm/ref DTMNodeProxy.java

jkesselm    01/10/05 14:37:08

  Modified:    java/src/org/apache/xml/dtm/ref DTMNodeProxy.java
  Log:
  Bugzilla 3722; documenting known issue with simplest approach
  
  Revision  Changes    Path
  1.8       +8 -0      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeProxy.java
  
  Index: DTMNodeProxy.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeProxy.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DTMNodeProxy.java	2001/09/20 15:09:58	1.7
  +++ DTMNodeProxy.java	2001/10/05 21:37:08	1.8
  @@ -58,6 +58,7 @@
   
   import org.w3c.dom.*;
   import org.apache.xml.dtm.*;
  +import org.apache.xml.dtm.Axis;
   
   /**
    * <meta name="usage" content="internal"/>
  @@ -355,6 +356,13 @@
     public final NodeList getChildNodes()
     {
       throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
  +		
  +		// Annoyingly, AxisIterators do not currently implement DTMIterator, so
  +		// the following simple solution is not avaiable.
  +		//
  +		//DTMAxisIterator it=dtm.getAxisIterator(Axis.CHILD);
  +		//it.setStartNode(node);
  +		//return new DTMNodeList(it);
     }
   
     /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org