You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2007/06/04 17:03:22 UTC

svn commit: r544161 - /harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/StreamHandler.java

Author: tellison
Date: Mon Jun  4 08:03:21 2007
New Revision: 544161

URL: http://svn.apache.org/viewvc?view=rev&rev=544161
Log:
Apply patch HARMONY-4041 ([classlib] [logging] Updated Javadoc for java.util.logging.StreamHandler)

Modified:
    harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/StreamHandler.java

Modified: harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/StreamHandler.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/StreamHandler.java?view=diff&rev=544161&r1=544160&r2=544161
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/StreamHandler.java (original)
+++ harmony/enhanced/classlib/trunk/modules/logging/src/main/java/java/util/logging/StreamHandler.java Mon Jun  4 08:03:21 2007
@@ -27,24 +27,20 @@
 
 /**
  * A <code>StreamHandler</code> object writes log messages to an output
- * stream, that is, objects of the class <code>java.io.OutputStream</code>.
+ * stream, that is, an object of type <code>java.io.OutputStream</code>.
  * <p>
- * A <code>StreamHandler</code> object reads the following properties from the
- * log manager to initialize itself:
+ * A <code>StreamHandler</code> reads the following properties from the log
+ * manager to initialize itself:
  * <ul>
- * <li>java.util.logging.StreamHandler.level specifies the logging level,
- * defaults to <code>Level.INFO</code> if this property is not found or has an
- * invalid value;
- * <li>java.util.logging.StreamHandler.filter specifies the name of the filter
- * class to be associated with this handler, defaults to <code>null</code> if
- * this property is not found or has an invalid value;
- * <li>java.util.logging.StreamHandler.formatter specifies the name of the
- * formatter class to be associated with this handler, defaults to
- * <code>java.util.logging.SimpleFormatter</code> if this property is not
- * found or has an invalid value;
- * <li>java.util.logging.StreamHandler.encoding specifies the encoding this
- * handler will use to encode log messages, defaults to <code>null</code> if
- * this property is not found or has an invalid value.
+ * <li>java.util.logging.StreamHandler.encoding - the name of the character set
+ * encoding. Default is the encoding used by the current platform.</li>
+ * <li>java.util.logging.StreamHandler.filter - the name of the
+ * <code>Filter</code> class. No <code>Filter</code> is used by default.</li>
+ * <li>java.util.logging.StreamHandler.formatter - the name of the
+ * <code>Formatter</code> class. Default is
+ * <code>java.util.logging.SimpleFormatter</code>.</li>
+ * <li>java.util.logging.StreamHandler.level - the log level for this
+ * <code>Handler</code>. Default is <code>Level.INFO</code>.</li>
  * </ul>
  * </p>
  * <p>