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
  +}
  
  
  

Reply via email to