6977887: (doc) Java 6 API missing info about encoding parameter in storeToXML method
authormchung
Wed, 01 Sep 2010 17:37:45 -0700
changeset 6521 3b995fa42e90
parent 6520 0e7cf575332e
child 6522 1e468849b92c
child 6523 d1c0054bff1c
child 6525 56be41b86ef8
6977887: (doc) Java 6 API missing info about encoding parameter in storeToXML method Reviewed-by: sherman
jdk/src/share/classes/java/util/Properties.java
--- a/jdk/src/share/classes/java/util/Properties.java	Wed Sep 01 09:45:08 2010 -0700
+++ b/jdk/src/share/classes/java/util/Properties.java	Wed Sep 01 17:37:45 2010 -0700
@@ -912,9 +912,13 @@
      *
      * <p>The specified stream remains open after this method returns.
      *
-     * @param os the output stream on which to emit the XML document.
-     * @param comment a description of the property list, or <code>null</code>
-     *        if no comment is desired.
+     * @param os        the output stream on which to emit the XML document.
+     * @param comment   a description of the property list, or <code>null</code>
+     *                  if no comment is desired.
+     * @param  encoding the name of a supported
+     *                  <a href="../lang/package-summary.html#charenc">
+     *                  character encoding</a>
+     *
      * @throws IOException if writing to the specified output stream
      *         results in an <tt>IOException</tt>.
      * @throws NullPointerException if <code>os</code> is <code>null</code>,