mmidy       00/12/05 14:52:11

  Modified:    java/src/org/apache/xalan/templates StylesheetRoot.java
  Log:
  Update javadoc
  
  Revision  Changes    Path
  1.29      +17 -19    
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.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- StylesheetRoot.java       2000/12/05 22:43:48     1.28
  +++ StylesheetRoot.java       2000/12/05 22:52:10     1.29
  @@ -750,9 +750,9 @@
      * well as this stylesheet.
      * @see <a 
href="http://www.w3.org/TR/xslt#section-Defining-Template-Rules";>section-Defining-Template-Rules
 in XSLT Specification</a>
      *
  -   * NEEDSDOC @param qname
  +   * @param qname Qualified name of template to get
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return ElemTemplate matching the given name 
      */
     public ElemTemplate getTemplateComposed(QName qname)
     {
  @@ -780,9 +780,9 @@
      * Get an "xsl:variable" property.
      * @see <a 
href="http://www.w3.org/TR/xslt#top-level-variables";>top-level-variables in 
XSLT Specification</a>
      *
  -   * NEEDSDOC @param qname
  +   * @param qname Qualified name of variable or param
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return The ElemVariable with the given qualified name
      */
     public ElemVariable getVariableOrParamComposed(QName qname)
     {
  @@ -805,7 +805,7 @@
      * Get all global "xsl:variable" properties in scope for this stylesheet.
      * @see <a 
href="http://www.w3.org/TR/xslt#top-level-variables";>top-level-variables in 
XSLT Specification</a>
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return Vector of all variables and params in scope
      */
     public Vector getVariablesAndParamsComposed()
     {
  @@ -835,7 +835,8 @@
      * Check to see if the caller should bother with check for
      * whitespace nodes.
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return Whether the caller should bother with check for
  +   * whitespace nodes.
      */
     public boolean shouldCheckWhitespace()
     {
  @@ -846,10 +847,10 @@
      * Get information about whether or not an element should strip whitespace.
      * @see <a href="http://www.w3.org/TR/xslt#strip";>strip in XSLT 
Specification</a>
      *
  -   * NEEDSDOC @param support
  -   * NEEDSDOC @param targetElement
  +   * @param support The XPath runtime state.
  +   * @param targetElement Element to check
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return WhiteSpaceInfo for the given element
      *
      * @throws TransformerException
      */
  @@ -876,7 +877,7 @@
      * <meta name="usage" content="advanced"/>
      * Get the default template for text.
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return the default template for text.
      */
     public final ElemTemplate getDefaultTextRule()
     {
  @@ -895,7 +896,7 @@
      * <meta name="usage" content="advanced"/>
      * Get the default template for elements.
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return the default template for elements.
      */
     public final ElemTemplate getDefaultRule()
     {
  @@ -919,7 +920,7 @@
      * <meta name="usage" content="advanced"/>
      * Get the default template for a root node.
      *
  -   * NEEDSDOC ($objectName$) @return
  +   * @return The default template for a root node.
      */
     public final ElemTemplate getDefaultRootRule()
     {
  @@ -997,14 +998,11 @@
      * then the parameters to this function are lowest index or
      * left and highest index or right.  The first time you call
      * this function it will be with the parameters 0, a.length - 1.
  +   *
  +   * @param v       a vector of Recomposable elements 
  +   * @param lo0     left boundary of partition
  +   * @param hi0     right boundary of partition
      *
  -   * @param a       an integer array
  -   * @param lo0     left boundary of array partition
  -   * @param hi0     right boundary of array partition
  -   *
  -   * NEEDSDOC @param v
  -   * NEEDSDOC @param i
  -   * NEEDSDOC @param j
      */
   
     private void QuickSort2(Vector v, int lo0, int hi0)
  
  
  

Reply via email to