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/11/15 03:59:42 UTC

cvs commit: xml-xalan/java/src/javax/xml/transform OutputKeys.java Transformer.java

sboag       00/11/14 18:59:42

  Modified:    java/src/javax/xml/transform OutputKeys.java
                        Transformer.java
  Log:
  Minor javadoc changes.
  
  Revision  Changes    Path
  1.3       +7 -1      xml-xalan/java/src/javax/xml/transform/OutputKeys.java
  
  Index: OutputKeys.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/javax/xml/transform/OutputKeys.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- OutputKeys.java	2000/11/14 17:02:39	1.2
  +++ OutputKeys.java	2000/11/15 02:59:42	1.3
  @@ -70,7 +70,13 @@
      * method = "xml" | "html" | "text" | <var>qname-but-not-ncname</var>.
      *
      * <p>The method attribute identifies the overall method that
  -   * should be used for outputting the result tree.</p>
  +   * should be used for outputting the result tree.  Other non-namespaced 
  +   * values may be used, such as "xhtml", but, if accepted, the handling 
  +   * of such values is implementation defined.  If any of the method values
  +   * are not accepted and are not namespace qualified, 
  +   * then {@link javax.xml.transform.Transformer#setOutputProperty} 
  +   * or {@link javax.xml.transform.Transformer#setOutputProperties} will 
  +   * throw an {@link java.lang.IllegalArgumentException}.</p>
      * 
      * @see <a href="http://www.w3.org/TR/xslt#output">section 16 of the
      * XSL Transformations (XSLT) W3C Recommendation</a>
  
  
  
  1.7       +3 -1      xml-xalan/java/src/javax/xml/transform/Transformer.java
  
  Index: Transformer.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/javax/xml/transform/Transformer.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Transformer.java	2000/11/14 17:02:39	1.6
  +++ Transformer.java	2000/11/15 02:59:42	1.7
  @@ -65,8 +65,10 @@
    * <p>An instance of this class can be obtained with the <code>
    * TransformerFactory.newTransformer</code> method. This instance may
    * then be used to process XML from a variety of sources and write
  - * the transformation output to a variety of sink.</p>
 * <p>An object of this class may not be used in multiple threads
  + * the transformation output to a variety of sinks.</p>
  + * 
 * <p>An object of this class may not be used in multiple threads
    * running concurrently.</p>
  + * 
    * <p>A Transformer may be used multiple times.  Parameters and 
    * output properties are preserved across transformations.</p>
    */