dleslie     00/02/25 11:18:39

  Modified:    src/org/apache/xalan/xslt/client XSLTProcessorApplet.java
  Log:
  more javadoc cleanup.
  
  Revision  Changes    Path
  1.10      +15 -15    
xml-xalan/src/org/apache/xalan/xslt/client/XSLTProcessorApplet.java
  
  Index: XSLTProcessorApplet.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/src/org/apache/xalan/xslt/client/XSLTProcessorApplet.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSLTProcessorApplet.java  2000/02/25 17:41:41     1.9
  +++ XSLTProcessorApplet.java  2000/02/25 19:18:39     1.10
  @@ -185,7 +185,7 @@
     }
   
     /**
  -   * Gets basic information about the applet
  +   * Get basic information about the applet
      * @return A String with the applet name and author.
      */
     public String getAppletInfo()
  @@ -195,7 +195,7 @@
     }
   
     /**
  -   * Gets descriptions of the applet parameters.
  +   * Get descriptions of the applet parameters.
      * @return A two-dimensional array of Strings with Name, Type, and 
Description
      * for each parameter.
      */
  @@ -359,7 +359,7 @@
     }
   
     /**
  -   * Sets the URL to the XSL stylesheet that will be used
  +   * Set the URL to the XSL stylesheet that will be used
      * to transform the input XML.  No processing is done yet.
      * @param valid URL string.
      */
  @@ -390,7 +390,7 @@
     }
   
     /**
  -   * Sets an attribute in the stylesheet, which gives the ability
  +   * Set an attribute in the stylesheet, which gives the ability
      * to have some dynamic selection control.
      * @param nameOfIDAttrOfElemToModify The name of an attribute to search 
for a unique id.
      * @param elemId The unique ID to look for.
  @@ -412,7 +412,7 @@
     transient String m_expression;
   
     /**
  -   * Submits a stylesheet parameter.
  +   * Submit a stylesheet parameter.
      * @param expr The parameter expression to be submitted.
      * @see org.apache.xalan.xslt.XSLTProcessor#setStylesheetParam(String, 
String)
      */
  @@ -423,7 +423,7 @@
     }
   
     /**
  -   * Given a String containing markup, escapes the markup so it
  +   * Given a String containing markup, escape the markup so it
      * can be displayed in the browser.
      */
     public String escapeString(String s)
  @@ -478,7 +478,7 @@
   
     /**
      * Assuming the stylesheet URL and the input XML URL have been set,
  -   * performs the transformation and returns the result as a String.
  +   * perform the transformation and return the result as a String.
      */
     public String getHtmlText()
     {
  @@ -499,7 +499,7 @@
     }
   
     /**
  -   * Gets a DOM tree as escaped text, suitable for display
  +   * Get a DOM tree as escaped text, suitable for display
      * in the browser.
      */
     public String getTreeAsText(String treeURL)
  @@ -526,7 +526,7 @@
     }
   
     /**
  -   * Gets the XML source Tree as a text string suiteable
  +   * Get the XML source Tree as a text string suiteable
      * for display in a browser.  Note that this is for display of the
      * XML itself, not for rendering of HTML by the browser.
      * @exception Exception thrown if tree can not be converted.
  @@ -538,7 +538,7 @@
     }
   
     /**
  -   * Gets the XSL style Tree as a text string suiteable
  +   * Get the XSL style Tree as a text string suiteable
      * for display in a browser.  Note that this is for display of the
      * XML itself, not for rendering of HTML by the browser.
      * @exception Exception thrown if tree can not be converted.
  @@ -550,7 +550,7 @@
     }
   
     /**
  -   * Gets the HTML result Tree as a text string suiteable
  +   * Get the HTML result Tree as a text string suiteable
      * for display in a browser.  Note that this is for display of the
      * XML itself, not for rendering of HTML by the browser.
      * @exception Exception thrown if tree can not be converted.
  @@ -562,7 +562,7 @@
     }
   
     /**
  -   * Processes a document and a stylesheet and returns
  +   * Process a document and a stylesheet and return
      * the transformation result.  If one of these is null, the
      * existing value (of a previous transformation) is not affected.
      */
  @@ -580,7 +580,7 @@
     }
   
     /**
  -   * Processes a document and a stylesheet and returns
  +   * Process a document and a stylesheet and return
      * the transformation result. Use the xsl:stylesheet PI to find the
      * document, if one exists.
      */
  @@ -595,7 +595,7 @@
     }
   
     /**
  -   * Does the real transformation after the right XML processor
  +   * Do the real transformation after the right XML processor
      * liason has been found.
      */
     private String doTransformation(XMLParserLiaison xmlProcessorLiaison,
  @@ -653,7 +653,7 @@
     }
   
     /**
  -   * Processes the transformation.
  +   * Process the transformation.
      */
     private String processTransformation()
       throws XSLProcessorException, MalformedURLException,
  
  
  

Reply via email to