You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by ga...@locus.apache.org on 2000/11/01 17:57:51 UTC

cvs commit: xml-xalan/src/org/apache/xalan/xpath/dtm DTMProxy.java

garyp       00/11/01 08:57:49

  Modified:    src/org/apache/xalan/xpath/dtm DTMProxy.java
  Log:
  Implement Node.isSupported().
  
  Revision  Changes    Path
  1.15      +8 -1      xml-xalan/src/org/apache/xalan/xpath/dtm/DTMProxy.java
  
  Index: DTMProxy.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xpath/dtm/DTMProxy.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- DTMProxy.java	2000/10/12 20:52:35	1.14
  +++ DTMProxy.java	2000/11/01 16:57:46	1.15
  @@ -207,6 +207,13 @@
     {
       throw new DTMException(DTMException.NOT_SUPPORTED_ERR);
     }
  +  
  +  /** @see org.w3c.dom.Node as of DOM Level 2 */
  +  public final boolean         isSupported(String feature, 
  +                                           String version)
  +  {
  +    throw new DTMException(DTMException.NOT_SUPPORTED_ERR);
  +  }
   
     /** @see org.w3c.dom.Node */
     public final String  getNodeValue()                                                 
  @@ -674,4 +681,4 @@
       throw new DTMException(DTMException.NOT_SUPPORTED_ERR);
     }
   
  -}
  \ No newline at end of file
  +}