You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mc...@apache.org on 2005/07/19 19:32:18 UTC

cvs commit: xml-xalan/java/src/org/apache/xpath/domapi XPathResultImpl.java XPathNSResolverImpl.java XPathExpressionImpl.java XPathEvaluatorImpl.java

mcnamara    2005/07/19 10:32:18

  Modified:    java/src/org/apache/xpath/domapi XPathResultImpl.java
                        XPathNSResolverImpl.java XPathExpressionImpl.java
                        XPathEvaluatorImpl.java
  Log:
  Doc changes for Xalan Java 2.7.0 release.
  This change was reviewed and approved in XALANJ-2170 by Christine Li.
  
  Revision  Changes    Path
  1.10      +2 -2      xml-xalan/java/src/org/apache/xpath/domapi/XPathResultImpl.java
  
  Index: XPathResultImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xpath/domapi/XPathResultImpl.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XPathResultImpl.java	12 Nov 2004 21:34:16 -0000	1.9
  +++ XPathResultImpl.java	19 Jul 2005 17:32:17 -0000	1.10
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2002-2005 The Apache Software Foundation.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -39,7 +39,7 @@
   /**
    *
    * The class provides an implementation XPathResult according 
  - * to the DOM L3 XPath Specification, Working Draft 28, March 2002.
  + * to the DOM L3 XPath Specification, Working Group Note 26 February 2004.
    *
    * <p>See also the <a href='http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
    * 
  
  
  
  1.8       +4 -4      xml-xalan/java/src/org/apache/xpath/domapi/XPathNSResolverImpl.java
  
  Index: XPathNSResolverImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xpath/domapi/XPathNSResolverImpl.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XPathNSResolverImpl.java	12 Nov 2004 21:34:16 -0000	1.7
  +++ XPathNSResolverImpl.java	19 Jul 2005 17:32:17 -0000	1.8
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2002-2005 The Apache Software Foundation.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -26,15 +26,15 @@
   /**
    *
    * The class provides an implementation XPathNSResolver according 
  - * to the DOM L3 XPath API Specification, Working Draft 28, March 2002.
  - * 
  + * to the DOM L3 XPath Specification, Working Group Note 26 February 2004.
  + *
  + * <p>See also the <a href='http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
    * 
    * <p>The <code>XPathNSResolver</code> interface permit <code>prefix</code> 
    * strings in the expression to be properly bound to 
    * <code>namespaceURI</code> strings. <code>XPathEvaluator</code> can 
    * construct an implementation of <code>XPathNSResolver</code> from a node, 
    * or the interface may be implemented by any application.</p>
  - * <p>See also the <a href='http://www.w3.org/TR/2002/WD-DOM-Level-3-XPath-20020328'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
    * 
    * @see org.w3c.dom.xpath.XPathNSResolver
    * @xsl.usage internal
  
  
  
  1.9       +5 -5      xml-xalan/java/src/org/apache/xpath/domapi/XPathExpressionImpl.java
  
  Index: XPathExpressionImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xpath/domapi/XPathExpressionImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XPathExpressionImpl.java	12 Nov 2004 21:34:16 -0000	1.8
  +++ XPathExpressionImpl.java	19 Jul 2005 17:32:17 -0000	1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2002-2005 The Apache Software Foundation.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -37,10 +37,10 @@
   /**
    * 
    * The class provides an implementation of XPathExpression according 
  - * to the DOM L3 XPath Specification, Working Draft 28, March 2002.
  + * to the DOM L3 XPath Specification, Working Group Note 26 February 2004.
    *
    * <p>See also the <a href='http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
  -
  + *
    * <p>The <code>XPathExpression</code> interface represents a parsed and resolved 
    * XPath expression.</p>
    * 
  @@ -76,9 +76,9 @@
       /**
        *
        * This method provides an implementation XPathResult.evaluate according 
  -     * to the DOM L3 XPath Specification, Working Draft 28, March 2002.
  +     * to the DOM L3 XPath Specification, Working Group Note 26 February 2004.
        *
  -     * <p>See also the <a href='http://www.w3.org/TR/2002/WD-DOM-Level-3-XPath-20020328'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
  +     * <p>See also the <a href='http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
        * 
        * <p>Evaluates this XPath expression and returns a result.</p>
        * @param contextNode The <code>context</code> is context node for the 
  
  
  
  1.9       +2 -2      xml-xalan/java/src/org/apache/xpath/domapi/XPathEvaluatorImpl.java
  
  Index: XPathEvaluatorImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xpath/domapi/XPathEvaluatorImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XPathEvaluatorImpl.java	12 Nov 2004 21:34:16 -0000	1.8
  +++ XPathEvaluatorImpl.java	19 Jul 2005 17:32:17 -0000	1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2002-2005 The Apache Software Foundation.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -36,7 +36,7 @@
   /**
    *
    * The class provides an implementation of XPathEvaluator according 
  - * to the DOM L3 XPath Specification, Working Draft 28, March 2002.
  + * to the DOM L3 XPath Specification, Working Group Note 26 February 2004.
    *
    * <p>See also the <a href='http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226'>Document Object Model (DOM) Level 3 XPath Specification</a>.</p>
    * 
  
  
  

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