You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@locus.apache.org on 2000/07/21 16:48:20 UTC

cvs commit: xml-xalan/src/org/apache/xalan/xslt UnImplNode.java

sboag       00/07/21 07:48:19

  Modified:    src/org/apache/xalan/xslt UnImplNode.java
  Log:
  Added hasAttributes.
  
  Revision  Changes    Path
  1.9       +9 -0      xml-xalan/src/org/apache/xalan/xslt/UnImplNode.java
  
  Index: UnImplNode.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xslt/UnImplNode.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- UnImplNode.java	2000/05/10 20:28:03	1.8
  +++ UnImplNode.java	2000/07/21 14:48:14	1.9
  @@ -246,6 +246,15 @@
       error(XSLTErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"hasAttributeNS not supported!");
       return false;
     }
  +  
  +  /**
  +   * Introduced in DOM Level 2.
  +   */
  +  public boolean hasAttributes() 
  +  {
  +    error(XSLTErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"hasAttributeNS not supported!");
  +    return false;
  +  }
   
   
     /** Unimplemented. */