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/01/23 01:27:30 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/templates XUnresolvedVariable.java XSLTVisitor.java WhiteSpaceInfo.java TemplateList.java StylesheetRoot.java RedundentExprEliminator.java ElemWithParam.java ElemVariablePsuedo.java ElemVariable.java ElemValueOf.java ElemUse.java ElemUnknown.java ElemTextLiteral.java ElemTemplateElement.java ElemTemplate.java ElemPI.java ElemParam.java ElemNumber.java ElemMessage.java ElemLiteralResult.java ElemIf.java ElemForEach.java ElemFallback.java ElemExtensionCall.java ElemExsltFunction.java ElemCopyOf.java ElemCopy.java ElemComment.java ElemChoose.java ElemCallTemplate.java ElemAttributeSet.java ElemApplyTemplates.java ElemApplyImport.java AVTPartXPath.java AVTPartSimple.java AVTPart.java AVT.java

mcnamara    2005/01/22 16:27:30

  Modified:    java/src/org/apache/xalan/templates XUnresolvedVariable.java
                        XSLTVisitor.java WhiteSpaceInfo.java
                        TemplateList.java StylesheetRoot.java
                        RedundentExprEliminator.java ElemWithParam.java
                        ElemVariablePsuedo.java ElemVariable.java
                        ElemValueOf.java ElemUse.java ElemUnknown.java
                        ElemTextLiteral.java ElemTemplateElement.java
                        ElemTemplate.java ElemPI.java ElemParam.java
                        ElemNumber.java ElemMessage.java
                        ElemLiteralResult.java ElemIf.java ElemForEach.java
                        ElemFallback.java ElemExtensionCall.java
                        ElemExsltFunction.java ElemCopyOf.java
                        ElemCopy.java ElemComment.java ElemChoose.java
                        ElemCallTemplate.java ElemAttributeSet.java
                        ElemApplyTemplates.java ElemApplyImport.java
                        AVTPartXPath.java AVTPartSimple.java AVTPart.java
                        AVT.java
  Log:
  Clean up javadoc to reduce warnings during doc builds.  See XALANJ-2048.
  
  Revision  Changes    Path
  1.12      +2 -2      xml-xalan/java/src/org/apache/xalan/templates/XUnresolvedVariable.java
  
  Index: XUnresolvedVariable.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/XUnresolvedVariable.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- XUnresolvedVariable.java	17 Aug 2004 18:35:34 -0000	1.11
  +++ XUnresolvedVariable.java	23 Jan 2005 00:27:29 -0000	1.12
  @@ -152,7 +152,7 @@
      * Set an index into the variable stack where the variable context 
      * ends, i.e. at the point we should terminate the search.
      * 
  -   * @param The point at which the search should terminate, normally 
  +   * @param bottom The point at which the search should terminate, normally 
      * zero for global variables.
      */
     public void setVarStackContext(int bottom)
  
  
  
  1.8       +1 -3      xml-xalan/java/src/org/apache/xalan/templates/XSLTVisitor.java
  
  Index: XSLTVisitor.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/XSLTVisitor.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSLTVisitor.java	16 Feb 2004 20:32:32 -0000	1.7
  +++ XSLTVisitor.java	23 Jan 2005 00:27:29 -0000	1.8
  @@ -101,8 +101,6 @@
   	/**
   	 * Visit an Attribute Value Template (at the top level).
   	 * 
  -	 * @param owner The owner of the expression, to which the expression can 
  -	 *              be reset if rewriting takes place.
   	 * @param elem The attribute value template object.
   	 * @return true if the sub expressions should be traversed.
   	 */
  
  
  
  1.12      +1 -6      xml-xalan/java/src/org/apache/xalan/templates/WhiteSpaceInfo.java
  
  Index: WhiteSpaceInfo.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/WhiteSpaceInfo.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- WhiteSpaceInfo.java	17 Aug 2004 18:35:34 -0000	1.11
  +++ WhiteSpaceInfo.java	23 Jan 2005 00:27:29 -0000	1.12
  @@ -47,11 +47,6 @@
     
     /**
      * Constructor WhiteSpaceInfo
  -   *
  -   *
  -   * @param matchPattern Match pattern
  -   * @param shouldStripSpace Flag indicating whether or not
  -   * to strip whitespaces
      * @param thisSheet The current stylesheet
      */
     public WhiteSpaceInfo(Stylesheet thisSheet)
  
  
  
  1.41      +2 -2      xml-xalan/java/src/org/apache/xalan/templates/TemplateList.java
  
  Index: TemplateList.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/TemplateList.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- TemplateList.java	15 Dec 2004 17:35:35 -0000	1.40
  +++ TemplateList.java	23 Jan 2005 00:27:29 -0000	1.41
  @@ -644,7 +644,7 @@
      * @param maxImportLevel The maximum importCountComposed that we should consider or -1
      *        if we should consider all import levels.  This is used by apply-imports to
      *        access templates that have been overridden.
  -   * @param maxEndImportLevel The count of composed imports
  +   * @param endImportLevel The count of composed imports
      * @param quietConflictWarnings
      * @return Rule that best matches targetElem.
      * @throws XSLProcessorException thrown if the active ProblemListener and XPathContext decide
  
  
  
  1.57      +4 -4      xml-xalan/java/src/org/apache/xalan/templates/StylesheetRoot.java
  
  Index: StylesheetRoot.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/StylesheetRoot.java,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- StylesheetRoot.java	15 Dec 2004 17:35:35 -0000	1.56
  +++ StylesheetRoot.java	23 Jan 2005 00:27:29 -0000	1.57
  @@ -1343,7 +1343,7 @@
       }
   
       /**
  -     * @param Optimization flag
  +     * @param b Optimization flag
        */
       public void setOptimizer(boolean b) {
           m_optimizer = b;
  @@ -1364,14 +1364,14 @@
       }
   
       /**
  -     * @param Incremental flag
  +     * @param b Incremental flag
        */
       public void setIncremental(boolean b) {
           m_incremental = b;
       }
   
       /**
  -     * @param Source location flag
  +     * @param b Source location flag
        */
       public void setSource_location(boolean b) {
           m_source_location = b;
  
  
  
  1.11      +2 -10     xml-xalan/java/src/org/apache/xalan/templates/RedundentExprEliminator.java
  
  Index: RedundentExprEliminator.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/RedundentExprEliminator.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- RedundentExprEliminator.java	15 Dec 2004 17:35:35 -0000	1.10
  +++ RedundentExprEliminator.java	23 Jan 2005 00:27:29 -0000	1.11
  @@ -65,10 +65,6 @@
   
     /**
      * Construct a RedundentExprEliminator.
  -   * 
  -   * @param absPathsList Vector to which absolute paths will 
  -   * be inserted.  The vector may be null, if the caller does 
  -   * not wish to collect absolute paths.
      */
     public RedundentExprEliminator()
     {
  @@ -101,9 +97,6 @@
      * for each redundent expression, and then rewriting the redundent 
      * expression to be a variable reference.
      * 
  -   * @param psuedoVarRecipient The recipient of the psuedo vars.  The 
  -   * variables will be inserted as first children of the element, before 
  -   * any existing variables.
      */
     public void eleminateRedundentGlobals(StylesheetRoot stylesheet)
     {
  @@ -592,7 +585,7 @@
      * the vector will be replaced by null.
      * 
      * @param start The position to start looking in the vector.
  -   * @param targetIndex The position of firstOccuranceOwner.
  +   * @param firstOccuranceIndex The position of firstOccuranceOwner.
      * @param firstOccuranceOwner The owner of the expression we are looking for.
      * @param psuedoVarRecipient Where to put the psuedo variables.
      * 
  @@ -873,7 +866,6 @@
      * @param psuedoVarRecipient The broadest scope of where the variable 
      * should be inserted, usually an xsl:template or xsl:for-each.
      * @param lpi The LocationPathIterator that the variable should represent.
  -   * @param addToContext true if the decl should be added to psuedoVarRecipient.
      * @return null if the decl was not created, otherwise the new Pseudo var  
      *              element.
      */
  
  
  
  1.17      +2 -2      xml-xalan/java/src/org/apache/xalan/templates/ElemWithParam.java
  
  Index: ElemWithParam.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemWithParam.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- ElemWithParam.java	15 Dec 2004 17:35:35 -0000	1.16
  +++ ElemWithParam.java	23 Jan 2005 00:27:29 -0000	1.17
  @@ -167,7 +167,7 @@
     /**
      * Set the parent as an ElemTemplateElement.
      *
  -   * @param parent This node's parent as an ElemTemplateElement
  +   * @param p This node's parent as an ElemTemplateElement
      */
     public void setParentElem(ElemTemplateElement p)
     {
  
  
  
  1.7       +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemVariablePsuedo.java
  
  Index: ElemVariablePsuedo.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemVariablePsuedo.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ElemVariablePsuedo.java	17 Aug 2004 18:35:33 -0000	1.6
  +++ ElemVariablePsuedo.java	23 Jan 2005 00:27:29 -0000	1.7
  @@ -49,8 +49,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#variables">variables in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.29      +2 -4      xml-xalan/java/src/org/apache/xalan/templates/ElemVariable.java
  
  Index: ElemVariable.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemVariable.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- ElemVariable.java	15 Dec 2004 17:35:35 -0000	1.28
  +++ ElemVariable.java	23 Jan 2005 00:27:29 -0000	1.29
  @@ -232,8 +232,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#variables">variables in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -467,7 +465,7 @@
     /**
      * Set the parent as an ElemTemplateElement.
      *
  -   * @param parent This node's parent as an ElemTemplateElement
  +   * @param p This node's parent as an ElemTemplateElement
      */
     public void setParentElem(ElemTemplateElement p)
     {
  
  
  
  1.27      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemValueOf.java
  
  Index: ElemValueOf.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemValueOf.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- ElemValueOf.java	15 Dec 2004 17:35:35 -0000	1.26
  +++ ElemValueOf.java	23 Jan 2005 00:27:29 -0000	1.27
  @@ -204,8 +204,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#value-of">value-of in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.21      +1 -8      xml-xalan/java/src/org/apache/xalan/templates/ElemUse.java
  
  Index: ElemUse.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemUse.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- ElemUse.java	17 Aug 2004 18:35:33 -0000	1.20
  +++ ElemUse.java	23 Jan 2005 00:27:29 -0000	1.21
  @@ -112,9 +112,6 @@
      *
      * @param transformer non-null reference to the the current transform-time state.
      * @param stylesheet The owning root stylesheet
  -   * @param attributeSetsNames List of attribute sets names to apply
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -135,8 +132,6 @@
      * @param transformer non-null reference to the the current transform-time state.
      * @param stylesheet The owning root stylesheet
      * @param attributeSetsNames List of attribute sets names to apply
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -190,8 +185,6 @@
      * or indirectly use itself.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.14      +1 -5      xml-xalan/java/src/org/apache/xalan/templates/ElemUnknown.java
  
  Index: ElemUnknown.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemUnknown.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ElemUnknown.java	15 Dec 2004 17:35:35 -0000	1.13
  +++ ElemUnknown.java	23 Jan 2005 00:27:29 -0000	1.14
  @@ -48,8 +48,6 @@
      * Execute the fallbacks when an extension is not available.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -99,8 +97,6 @@
      * Execute fallback if fallback child exists or do nothing
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.19      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemTextLiteral.java
  
  Index: ElemTextLiteral.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemTextLiteral.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- ElemTextLiteral.java	15 Dec 2004 17:35:35 -0000	1.18
  +++ ElemTextLiteral.java	23 Jan 2005 00:27:29 -0000	1.19
  @@ -192,8 +192,6 @@
      * Copy the text literal to the result tree.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.67      +6 -14     xml-xalan/java/src/org/apache/xalan/templates/ElemTemplateElement.java
  
  Index: ElemTemplateElement.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemTemplateElement.java,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- ElemTemplateElement.java	17 Aug 2004 18:35:33 -0000	1.66
  +++ ElemTemplateElement.java	23 Jan 2005 00:27:29 -0000	1.67
  @@ -63,12 +63,6 @@
     /**
      * Construct a template element instance.
      *
  -   * @param transformer The XSLT TransformerFactory.
  -   * @param stylesheetTree The owning stylesheet.
  -   * @param name The name of the element.
  -   * @param atts The element attributes.
  -   * @param lineNumber The line in the XSLT file that the element occurs on.
  -   * @param columnNumber The column index in the XSLT file that the element occurs on.
      */
     public ElemTemplateElement(){}
   
  @@ -132,8 +126,6 @@
      * function may recursivly execute down the element tree.
      *
      * @param transformer The XSLT TransformerFactory.
  -   * @param sourceNode The current context node.
  -   * @param mode The current mode.
      * 
      * @throws TransformerException if any checked exception occurs.
      */
  @@ -290,7 +282,7 @@
      * first to remove it from its previous context. Failing to do so will
      * damage the tree.
      *
  -   * @param newChild Child to be added to child list
  +   * @param elem Child to be added to child list
      *
      * @return Child just added to the child list
      */
  @@ -499,8 +491,8 @@
     /**
      * Replace the old child with a new child.
      *
  -   * @param newChild New child to replace with
  -   * @param oldChild Old child to be replaced
  +   * @param newChildElem New child to replace with
  +   * @param oldChildElem Old child to be replaced
      *
      * @return The new child
      *
  @@ -1258,7 +1250,7 @@
     /**
      * Set the UID (document order index).
      *
  -   * @param kIndex Index of this child.
  +   * @param i Index of this child.
      */
     public void setUid(int i)
     {
  @@ -1305,7 +1297,7 @@
     /**
      * Set the parent as an ElemTemplateElement.
      *
  -   * @param parent This node's parent as an ElemTemplateElement
  +   * @param p This node's parent as an ElemTemplateElement
      */
     public void setParentElem(ElemTemplateElement p)
     {
  
  
  
  1.23      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemTemplate.java
  
  Index: ElemTemplate.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemTemplate.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- ElemTemplate.java	15 Dec 2004 17:35:35 -0000	1.22
  +++ ElemTemplate.java	23 Jan 2005 00:27:29 -0000	1.23
  @@ -370,8 +370,6 @@
      * that is instantiated when the template rule is applied.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.22      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemPI.java
  
  Index: ElemPI.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemPI.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ElemPI.java	15 Dec 2004 17:35:35 -0000	1.21
  +++ ElemPI.java	23 Jan 2005 00:27:29 -0000	1.22
  @@ -116,8 +116,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#section-Creating-Processing-Instructions">section-Creating-Processing-Instructions in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.20      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemParam.java
  
  Index: ElemParam.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemParam.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- ElemParam.java	15 Dec 2004 17:35:35 -0000	1.19
  +++ ElemParam.java	23 Jan 2005 00:27:29 -0000	1.20
  @@ -101,8 +101,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#variables">variables in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.35      +1 -7      xml-xalan/java/src/org/apache/xalan/templates/ElemNumber.java
  
  Index: ElemNumber.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemNumber.java,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- ElemNumber.java	15 Dec 2004 17:35:34 -0000	1.34
  +++ ElemNumber.java	23 Jan 2005 00:27:29 -0000	1.35
  @@ -541,8 +541,6 @@
      * used to insert a formatted number into the result tree.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -960,8 +958,6 @@
      * Get the ancestors, up to the root, that match the
      * pattern.
      * 
  -   * @param patterns if non-null, count only nodes
  -   * that match this pattern, if null count all ancestors.
      * @param xctxt The XPath runtime state for this.
      * @param node Count this node and it's ancestors.
      * @param stopAtFirstFound Flag indicating to stop after the
  @@ -1141,7 +1137,6 @@
     /**
      * Format a vector of numbers into a formatted string.
      * 
  -   * @param xslNumberElement Element that takes %conversion-atts; attributes.
      * @param transformer non-null reference to the the current transform-time state.
      * @param list Array of one or more long integer numbers.
      * @param contextNode The node that "." expresses.
  @@ -1710,7 +1705,6 @@
      * count using the traditional numbering.
      * 
      * @param val Value to convert -- must be greater than zero.
  -   * @param table a table containing one character for each digit in the radix
      * @param thisBundle Resource bundle to use
      * 
      * @return String representing alpha count of number.
  
  
  
  1.20      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemMessage.java
  
  Index: ElemMessage.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemMessage.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- ElemMessage.java	15 Dec 2004 17:35:34 -0000	1.19
  +++ ElemMessage.java	23 Jan 2005 00:27:29 -0000	1.20
  @@ -104,8 +104,6 @@
      * fragment is the content of the message.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.45      +2 -4      xml-xalan/java/src/org/apache/xalan/templates/ElemLiteralResult.java
  
  Index: ElemLiteralResult.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemLiteralResult.java,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- ElemLiteralResult.java	15 Dec 2004 17:35:34 -0000	1.44
  +++ ElemLiteralResult.java	23 Jan 2005 00:27:29 -0000	1.45
  @@ -143,7 +143,7 @@
      * @see <a href="http://www.w3.org/TR/xslt#strip">strip in XSLT Specification</a>
      * @see <a href="http://www.w3.org/TR/xslt#section-Creating-Text">section-Creating-Text in XSLT Specification</a>
      *
  -   * @param v  Enumerated value, either Constants.ATTRVAL_PRESERVE 
  +   * @param avt  Enumerated value, either Constants.ATTRVAL_PRESERVE 
      * or Constants.ATTRVAL_STRIP.
      */
     public void setXmlSpace(AVT avt)
  @@ -599,8 +599,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#literal-result-element">literal-result-element in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.20      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemIf.java
  
  Index: ElemIf.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemIf.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- ElemIf.java	15 Dec 2004 17:35:34 -0000	1.19
  +++ ElemIf.java	23 Jan 2005 00:27:29 -0000	1.20
  @@ -119,8 +119,6 @@
      * is created.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.41      +1 -2      xml-xalan/java/src/org/apache/xalan/templates/ElemForEach.java
  
  Index: ElemForEach.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemForEach.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- ElemForEach.java	15 Dec 2004 17:35:34 -0000	1.40
  +++ ElemForEach.java	23 Jan 2005 00:27:29 -0000	1.41
  @@ -320,7 +320,6 @@
      * Perform a query if needed, and call transformNode for each child.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param template The owning template context.
      *
      * @throws TransformerException Thrown in a variety of circumstances.
      * @xsl.usage advanced
  
  
  
  1.20      +1 -5      xml-xalan/java/src/org/apache/xalan/templates/ElemFallback.java
  
  Index: ElemFallback.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemFallback.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- ElemFallback.java	15 Dec 2004 17:35:34 -0000	1.19
  +++ ElemFallback.java	23 Jan 2005 00:27:29 -0000	1.20
  @@ -62,8 +62,6 @@
      * "Normally, instantiating an xsl:fallback element does nothing."
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -83,8 +81,6 @@
      * be signaled. The content of an xsl:fallback element is a template.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.41      +1 -5      xml-xalan/java/src/org/apache/xalan/templates/ElemExtensionCall.java
  
  Index: ElemExtensionCall.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemExtensionCall.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- ElemExtensionCall.java	15 Dec 2004 17:35:34 -0000	1.40
  +++ ElemExtensionCall.java	23 Jan 2005 00:27:29 -0000	1.41
  @@ -142,8 +142,6 @@
      * Execute the fallbacks when an extension is not available.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -192,8 +190,6 @@
      * Execute an extension.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.13      +2 -2      xml-xalan/java/src/org/apache/xalan/templates/ElemExsltFunction.java
  
  Index: ElemExsltFunction.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemExsltFunction.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ElemExsltFunction.java	15 Dec 2004 17:35:34 -0000	1.12
  +++ ElemExsltFunction.java	23 Jan 2005 00:27:29 -0000	1.13
  @@ -52,7 +52,7 @@
      /**
      * Return the node name, defined in the
      *     Constants class.
  -   * @see org.apache.xalan.templates.Constants.
  +   * @see org.apache.xalan.templates.Constants
      * @return The node name
      * 
      */ 
  
  
  
  1.22      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemCopyOf.java
  
  Index: ElemCopyOf.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemCopyOf.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ElemCopyOf.java	15 Dec 2004 17:35:34 -0000	1.21
  +++ ElemCopyOf.java	23 Jan 2005 00:27:29 -0000	1.22
  @@ -115,8 +115,6 @@
      * xsl:value-of]).
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.23      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemCopy.java
  
  Index: ElemCopy.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemCopy.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- ElemCopy.java	15 Dec 2004 17:35:34 -0000	1.22
  +++ ElemCopy.java	23 Jan 2005 00:27:29 -0000	1.23
  @@ -80,8 +80,6 @@
      * the content template.</p>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.16      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemComment.java
  
  Index: ElemComment.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemComment.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- ElemComment.java	15 Dec 2004 17:35:34 -0000	1.15
  +++ ElemComment.java	23 Jan 2005 00:27:29 -0000	1.16
  @@ -62,8 +62,6 @@
      *
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.21      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemChoose.java
  
  Index: ElemChoose.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemChoose.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- ElemChoose.java	15 Dec 2004 17:35:34 -0000	1.20
  +++ ElemChoose.java	23 Jan 2005 00:27:29 -0000	1.21
  @@ -70,8 +70,6 @@
      *
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.30      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemCallTemplate.java
  
  Index: ElemCallTemplate.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemCallTemplate.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- ElemCallTemplate.java	15 Dec 2004 17:35:34 -0000	1.29
  +++ ElemCallTemplate.java	23 Jan 2005 00:27:29 -0000	1.30
  @@ -183,8 +183,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#named-templates">named-templates in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.17      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemAttributeSet.java
  
  Index: ElemAttributeSet.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemAttributeSet.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- ElemAttributeSet.java	15 Dec 2004 17:35:34 -0000	1.16
  +++ ElemAttributeSet.java	23 Jan 2005 00:27:29 -0000	1.17
  @@ -94,8 +94,6 @@
      * Apply a set of attributes to the element.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.36      +1 -4      xml-xalan/java/src/org/apache/xalan/templates/ElemApplyTemplates.java
  
  Index: ElemApplyTemplates.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemApplyTemplates.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- ElemApplyTemplates.java	15 Dec 2004 17:35:34 -0000	1.35
  +++ ElemApplyTemplates.java	23 Jan 2005 00:27:29 -0000	1.36
  @@ -142,8 +142,6 @@
      * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a>
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  @@ -194,7 +192,6 @@
      * Perform a query if needed, and call transformNode for each child.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param template The owning template context.
      *
      * @throws TransformerException Thrown in a variety of circumstances.
      * @xsl.usage advanced
  
  
  
  1.18      +1 -3      xml-xalan/java/src/org/apache/xalan/templates/ElemApplyImport.java
  
  Index: ElemApplyImport.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemApplyImport.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- ElemApplyImport.java	15 Dec 2004 17:35:34 -0000	1.17
  +++ ElemApplyImport.java	23 Jan 2005 00:27:29 -0000	1.18
  @@ -61,8 +61,6 @@
      * Execute the xsl:apply-imports transformation.
      *
      * @param transformer non-null reference to the the current transform-time state.
  -   * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
  -   * @param mode reference, which may be null, to the <a href="http://www.w3.org/TR/xslt#modes">current mode</a>.
      *
      * @throws TransformerException
      */
  
  
  
  1.20      +1 -2      xml-xalan/java/src/org/apache/xalan/templates/AVTPartXPath.java
  
  Index: AVTPartXPath.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/AVTPartXPath.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- AVTPartXPath.java	17 Aug 2004 18:35:32 -0000	1.19
  +++ AVTPartXPath.java	23 Jan 2005 00:27:29 -0000	1.20
  @@ -122,7 +122,6 @@
      * @param buf Buffer to write into.
      * @param context The current source tree context.
      * @param nsNode The current namespace context (stylesheet tree context).
  -   * @param NodeList The current Context Node List.
      *
      * @throws javax.xml.transform.TransformerException
      */
  
  
  
  1.17      +1 -2      xml-xalan/java/src/org/apache/xalan/templates/AVTPartSimple.java
  
  Index: AVTPartSimple.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/AVTPartSimple.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- AVTPartSimple.java	17 Aug 2004 18:35:32 -0000	1.16
  +++ AVTPartSimple.java	23 Jan 2005 00:27:29 -0000	1.17
  @@ -80,7 +80,6 @@
      * @param buf Buffer to write into.
      * @param context The current source tree context.
      * @param nsNode The current namespace context (stylesheet tree context).
  -   * @param NodeList The current Context Node List.
      */
     public void evaluate(XPathContext xctxt, FastStringBuffer buf,
                          int context,
  
  
  
  1.17      +1 -2      xml-xalan/java/src/org/apache/xalan/templates/AVTPart.java
  
  Index: AVTPart.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/AVTPart.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- AVTPart.java	17 Aug 2004 18:35:31 -0000	1.16
  +++ AVTPart.java	23 Jan 2005 00:27:29 -0000	1.17
  @@ -50,7 +50,6 @@
      * @param buf Buffer to write into.
      * @param context The current source tree context.
      * @param nsNode The current namespace context (stylesheet tree context).
  -   * @param NodeList The current Context Node List.
      *
      * @throws javax.xml.transform.TransformerException
      */
  
  
  
  1.26      +1 -2      xml-xalan/java/src/org/apache/xalan/templates/AVT.java
  
  Index: AVT.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/AVT.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- AVT.java	17 Aug 2004 18:35:31 -0000	1.25
  +++ AVT.java	23 Jan 2005 00:27:29 -0000	1.26
  @@ -481,7 +481,6 @@
      * @param xctxt Te XPathContext to use to evaluate this.
      * @param context The current source tree context.
      * @param nsNode The current namespace context (stylesheet tree context).
  -   * @param NodeList The current Context Node List.
      *
      * @return The AVT evaluated as a string
      *
  
  
  

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