提交 c8af0163 编写于 作者: D dcubed

6882363: 4/4 typos in java.util.logging javadocs

Summary: Fix typos, some grammar and some inconsistencies in phrasing.
Reviewed-by: tbell
上级 3ac9fb01
...@@ -28,7 +28,7 @@ package java.util.logging; ...@@ -28,7 +28,7 @@ package java.util.logging;
/** /**
* ErrorManager objects can be attached to Handlers to process * ErrorManager objects can be attached to Handlers to process
* any error that occur on a Handler during Logging. * any error that occurs on a Handler during Logging.
* <p> * <p>
* When processing logging output, if a Handler encounters problems * When processing logging output, if a Handler encounters problems
* then rather than throwing an Exception back to the issuer of * then rather than throwing an Exception back to the issuer of
...@@ -72,7 +72,7 @@ public class ErrorManager { ...@@ -72,7 +72,7 @@ public class ErrorManager {
/** /**
* The error method is called when a Handler failure occurs. * The error method is called when a Handler failure occurs.
* <p> * <p>
* This method may be overriden in subclasses. The default * This method may be overridden in subclasses. The default
* behavior in this base class is that the first call is * behavior in this base class is that the first call is
* reported to System.err, and subsequent calls are ignored. * reported to System.err, and subsequent calls are ignored.
* *
......
...@@ -39,7 +39,7 @@ import java.security.*; ...@@ -39,7 +39,7 @@ import java.security.*;
* For a rotating set of files, as each file reaches a given size * For a rotating set of files, as each file reaches a given size
* limit, it is closed, rotated out, and a new file opened. * limit, it is closed, rotated out, and a new file opened.
* Successively older files are named by adding "0", "1", "2", * Successively older files are named by adding "0", "1", "2",
* etc into the base filename. * etc. into the base filename.
* <p> * <p>
* By default buffering is enabled in the IO libraries but each log * By default buffering is enabled in the IO libraries but each log
* record is flushed out when it is complete. * record is flushed out when it is complete.
...@@ -391,7 +391,7 @@ public class FileHandler extends StreamHandler { ...@@ -391,7 +391,7 @@ public class FileHandler extends StreamHandler {
// Generate a lock file name from the "unique" int. // Generate a lock file name from the "unique" int.
lockFileName = generate(pattern, 0, unique).toString() + ".lck"; lockFileName = generate(pattern, 0, unique).toString() + ".lck";
// Now try to lock that filename. // Now try to lock that filename.
// Because some systems (e.g. Solaris) can only do file locks // Because some systems (e.g., Solaris) can only do file locks
// between processes (and not within a process), we first check // between processes (and not within a process), we first check
// if we ourself already have the file locked. // if we ourself already have the file locked.
synchronized(locks) { synchronized(locks) {
......
...@@ -52,7 +52,7 @@ public abstract class Formatter { ...@@ -52,7 +52,7 @@ public abstract class Formatter {
* Format the given log record and return the formatted string. * Format the given log record and return the formatted string.
* <p> * <p>
* The resulting formatted String will normally include a * The resulting formatted String will normally include a
* localized and formated version of the LogRecord's message field. * localized and formatted version of the LogRecord's message field.
* It is recommended to use the {@link Formatter#formatMessage} * It is recommended to use the {@link Formatter#formatMessage}
* convenience method to localize and format the message field. * convenience method to localize and format the message field.
* *
...@@ -66,7 +66,7 @@ public abstract class Formatter { ...@@ -66,7 +66,7 @@ public abstract class Formatter {
* Return the header string for a set of formatted records. * Return the header string for a set of formatted records.
* <p> * <p>
* This base class returns an empty string, but this may be * This base class returns an empty string, but this may be
* overriden by subclasses. * overridden by subclasses.
* *
* @param h The target handler (can be null) * @param h The target handler (can be null)
* @return header string * @return header string
...@@ -79,7 +79,7 @@ public abstract class Formatter { ...@@ -79,7 +79,7 @@ public abstract class Formatter {
* Return the tail string for a set of formatted records. * Return the tail string for a set of formatted records.
* <p> * <p>
* This base class returns an empty string, but this may be * This base class returns an empty string, but this may be
* overriden by subclasses. * overridden by subclasses.
* *
* @param h The target handler (can be null) * @param h The target handler (can be null)
* @return tail string * @return tail string
......
...@@ -274,7 +274,7 @@ public abstract class Handler { ...@@ -274,7 +274,7 @@ public abstract class Handler {
* <tt>Level</tt> and whether it satisfies any <tt>Filter</tt>. It also * <tt>Level</tt> and whether it satisfies any <tt>Filter</tt>. It also
* may make other <tt>Handler</tt> specific checks that might prevent a * may make other <tt>Handler</tt> specific checks that might prevent a
* handler from logging the <tt>LogRecord</tt>. It will return false if * handler from logging the <tt>LogRecord</tt>. It will return false if
* the <tt>LogRecord</tt> is Null. * the <tt>LogRecord</tt> is null.
* <p> * <p>
* @param record a <tt>LogRecord</tt> * @param record a <tt>LogRecord</tt>
* @return true if the <tt>LogRecord</tt> would be logged. * @return true if the <tt>LogRecord</tt> would be logged.
......
...@@ -110,7 +110,7 @@ public class Level implements java.io.Serializable { ...@@ -110,7 +110,7 @@ public class Level implements java.io.Serializable {
* Typically INFO messages will be written to the console * Typically INFO messages will be written to the console
* or its equivalent. So the INFO level should only be * or its equivalent. So the INFO level should only be
* used for reasonably significant messages that will * used for reasonably significant messages that will
* make sense to end users and system admins. * make sense to end users and system administrators.
* This level is initialized to <CODE>800</CODE>. * This level is initialized to <CODE>800</CODE>.
*/ */
public static final Level INFO = new Level("INFO", 800, defaultBundle); public static final Level INFO = new Level("INFO", 800, defaultBundle);
...@@ -245,6 +245,8 @@ public class Level implements java.io.Serializable { ...@@ -245,6 +245,8 @@ public class Level implements java.io.Serializable {
} }
/** /**
* Returns a string representation of this Level.
*
* @return the non-localized name of the Level, for example "INFO". * @return the non-localized name of the Level, for example "INFO".
*/ */
public final String toString() { public final String toString() {
...@@ -299,14 +301,14 @@ public class Level implements java.io.Serializable { ...@@ -299,14 +301,14 @@ public class Level implements java.io.Serializable {
* @throws IllegalArgumentException if the value is not valid. * @throws IllegalArgumentException if the value is not valid.
* Valid values are integers between <CODE>Integer.MIN_VALUE</CODE> * Valid values are integers between <CODE>Integer.MIN_VALUE</CODE>
* and <CODE>Integer.MAX_VALUE</CODE>, and all known level names. * and <CODE>Integer.MAX_VALUE</CODE>, and all known level names.
* Known names are the levels defined by this class (i.e. <CODE>FINE</CODE>, * Known names are the levels defined by this class (e.g., <CODE>FINE</CODE>,
* <CODE>FINER</CODE>, <CODE>FINEST</CODE>), or created by this class with * <CODE>FINER</CODE>, <CODE>FINEST</CODE>), or created by this class with
* appropriate package access, or new levels defined or created * appropriate package access, or new levels defined or created
* by subclasses. * by subclasses.
* *
* @return The parsed value. Passing an integer that corresponds to a known name * @return The parsed value. Passing an integer that corresponds to a known name
* (eg 700) will return the associated name (eg <CODE>CONFIG</CODE>). * (e.g., 700) will return the associated name (e.g., <CODE>CONFIG</CODE>).
* Passing an integer that does not (eg 1) will return a new level name * Passing an integer that does not (e.g., 1) will return a new level name
* initialized to that value. * initialized to that value.
*/ */
public static synchronized Level parse(String name) throws IllegalArgumentException { public static synchronized Level parse(String name) throws IllegalArgumentException {
......
...@@ -188,7 +188,7 @@ public class LogRecord implements java.io.Serializable { ...@@ -188,7 +188,7 @@ public class LogRecord implements java.io.Serializable {
} }
/** /**
* Get the source Logger name's * Get the source Logger's name.
* *
* @return source logger name (may be null) * @return source logger name (may be null)
*/ */
...@@ -197,7 +197,7 @@ public class LogRecord implements java.io.Serializable { ...@@ -197,7 +197,7 @@ public class LogRecord implements java.io.Serializable {
} }
/** /**
* Set the source Logger name. * Set the source Logger's name.
* *
* @param name the source logger name (may be null) * @param name the source logger name (may be null)
*/ */
......
...@@ -66,7 +66,7 @@ import java.lang.ref.WeakReference; ...@@ -66,7 +66,7 @@ import java.lang.ref.WeakReference;
* effective level from its parent. * effective level from its parent.
* <p> * <p>
* On each logging call the Logger initially performs a cheap * On each logging call the Logger initially performs a cheap
* check of the request level (e.g. SEVERE or FINE) against the * check of the request level (e.g., SEVERE or FINE) against the
* effective log level of the logger. If the request level is * effective log level of the logger. If the request level is
* lower than the log level, the logging call returns immediately. * lower than the log level, the logging call returns immediately.
* <p> * <p>
...@@ -230,7 +230,7 @@ public class Logger { ...@@ -230,7 +230,7 @@ public class Logger {
* Protected method to construct a logger for a named subsystem. * Protected method to construct a logger for a named subsystem.
* <p> * <p>
* The logger will be initially configured with a null Level * The logger will be initially configured with a null Level
* and with useParentHandlers true. * and with useParentHandlers set to true.
* *
* @param name A name for the logger. This should * @param name A name for the logger. This should
* be a dot-separated name and should normally * be a dot-separated name and should normally
...@@ -240,7 +240,7 @@ public class Logger { ...@@ -240,7 +240,7 @@ public class Logger {
* @param resourceBundleName name of ResourceBundle to be used for localizing * @param resourceBundleName name of ResourceBundle to be used for localizing
* messages for this logger. May be null if none * messages for this logger. May be null if none
* of the messages require localization. * of the messages require localization.
* @throws MissingResourceException if the ResourceBundleName is non-null and * @throws MissingResourceException if the resourceBundleName is non-null and
* no corresponding resource can be found. * no corresponding resource can be found.
*/ */
protected Logger(String name, String resourceBundleName) { protected Logger(String name, String resourceBundleName) {
...@@ -285,7 +285,7 @@ public class Logger { ...@@ -285,7 +285,7 @@ public class Logger {
* <p> * <p>
* If a new logger is created its log level will be configured * If a new logger is created its log level will be configured
* based on the LogManager configuration and it will configured * based on the LogManager configuration and it will configured
* to also send logging output to its parent's handlers. It will * to also send logging output to its parent's Handlers. It will
* be registered in the LogManager global namespace. * be registered in the LogManager global namespace.
* *
* @param name A name for the logger. This should * @param name A name for the logger. This should
...@@ -308,7 +308,7 @@ public class Logger { ...@@ -308,7 +308,7 @@ public class Logger {
* <p> * <p>
* If a new logger is created its log level will be configured * If a new logger is created its log level will be configured
* based on the LogManager and it will configured to also send logging * based on the LogManager and it will configured to also send logging
* output to its parent loggers Handlers. It will be registered in * output to its parent's Handlers. It will be registered in
* the LogManager global namespace. * the LogManager global namespace.
* <p> * <p>
* If the named Logger already exists and does not yet have a * If the named Logger already exists and does not yet have a
...@@ -326,7 +326,8 @@ public class Logger { ...@@ -326,7 +326,8 @@ public class Logger {
* messages for this logger. May be <CODE>null</CODE> if none of * messages for this logger. May be <CODE>null</CODE> if none of
* the messages require localization. * the messages require localization.
* @return a suitable Logger * @return a suitable Logger
* @throws MissingResourceException if the named ResourceBundle cannot be found. * @throws MissingResourceException if the resourceBundleName is non-null and
* no corresponding resource can be found.
* @throws IllegalArgumentException if the Logger already exists and uses * @throws IllegalArgumentException if the Logger already exists and uses
* a different resource bundle name. * a different resource bundle name.
* @throws NullPointerException if the name is null. * @throws NullPointerException if the name is null.
...@@ -395,7 +396,8 @@ public class Logger { ...@@ -395,7 +396,8 @@ public class Logger {
* messages for this logger. * messages for this logger.
* May be null if none of the messages require localization. * May be null if none of the messages require localization.
* @return a newly created private Logger * @return a newly created private Logger
* @throws MissingResourceException if the named ResourceBundle cannot be found. * @throws MissingResourceException if the resourceBundleName is non-null and
* no corresponding resource can be found.
*/ */
public static synchronized Logger getAnonymousLogger(String resourceBundleName) { public static synchronized Logger getAnonymousLogger(String resourceBundleName) {
LogManager manager = LogManager.getLogManager(); LogManager manager = LogManager.getLogManager();
...@@ -514,7 +516,7 @@ public class Logger { ...@@ -514,7 +516,7 @@ public class Logger {
* level then the given message is forwarded to all the * level then the given message is forwarded to all the
* registered output Handler objects. * registered output Handler objects.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
*/ */
public void log(Level level, String msg) { public void log(Level level, String msg) {
...@@ -532,7 +534,7 @@ public class Logger { ...@@ -532,7 +534,7 @@ public class Logger {
* level then a corresponding LogRecord is created and forwarded * level then a corresponding LogRecord is created and forwarded
* to all the registered output Handler objects. * to all the registered output Handler objects.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
* @param param1 parameter to the message * @param param1 parameter to the message
*/ */
...@@ -553,7 +555,7 @@ public class Logger { ...@@ -553,7 +555,7 @@ public class Logger {
* level then a corresponding LogRecord is created and forwarded * level then a corresponding LogRecord is created and forwarded
* to all the registered output Handler objects. * to all the registered output Handler objects.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
* @param params array of parameters to the message * @param params array of parameters to the message
*/ */
...@@ -578,7 +580,7 @@ public class Logger { ...@@ -578,7 +580,7 @@ public class Logger {
* processed specially by output Formatters and is not treated * processed specially by output Formatters and is not treated
* as a formatting parameter to the LogRecord message property. * as a formatting parameter to the LogRecord message property.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
* @param thrown Throwable associated with log message. * @param thrown Throwable associated with log message.
*/ */
...@@ -603,7 +605,7 @@ public class Logger { ...@@ -603,7 +605,7 @@ public class Logger {
* level then the given message is forwarded to all the * level then the given message is forwarded to all the
* registered output Handler objects. * registered output Handler objects.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
...@@ -626,7 +628,7 @@ public class Logger { ...@@ -626,7 +628,7 @@ public class Logger {
* level then a corresponding LogRecord is created and forwarded * level then a corresponding LogRecord is created and forwarded
* to all the registered output Handler objects. * to all the registered output Handler objects.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
...@@ -653,7 +655,7 @@ public class Logger { ...@@ -653,7 +655,7 @@ public class Logger {
* level then a corresponding LogRecord is created and forwarded * level then a corresponding LogRecord is created and forwarded
* to all the registered output Handler objects. * to all the registered output Handler objects.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
...@@ -684,7 +686,7 @@ public class Logger { ...@@ -684,7 +686,7 @@ public class Logger {
* processed specially by output Formatters and is not treated * processed specially by output Formatters and is not treated
* as a formatting parameter to the LogRecord message property. * as a formatting parameter to the LogRecord message property.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param msg The string message (or a key in the message catalog) * @param msg The string message (or a key in the message catalog)
...@@ -731,7 +733,7 @@ public class Logger { ...@@ -731,7 +733,7 @@ public class Logger {
* resource bundle name is null, or an empty String or invalid * resource bundle name is null, or an empty String or invalid
* then the msg string is not localized. * then the msg string is not localized.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param bundleName name of resource bundle to localize msg, * @param bundleName name of resource bundle to localize msg,
...@@ -762,7 +764,7 @@ public class Logger { ...@@ -762,7 +764,7 @@ public class Logger {
* resource bundle name is null, or an empty String or invalid * resource bundle name is null, or an empty String or invalid
* then the msg string is not localized. * then the msg string is not localized.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param bundleName name of resource bundle to localize msg, * @param bundleName name of resource bundle to localize msg,
...@@ -795,7 +797,7 @@ public class Logger { ...@@ -795,7 +797,7 @@ public class Logger {
* resource bundle name is null, or an empty String or invalid * resource bundle name is null, or an empty String or invalid
* then the msg string is not localized. * then the msg string is not localized.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param bundleName name of resource bundle to localize msg, * @param bundleName name of resource bundle to localize msg,
...@@ -832,7 +834,7 @@ public class Logger { ...@@ -832,7 +834,7 @@ public class Logger {
* processed specially by output Formatters and is not treated * processed specially by output Formatters and is not treated
* as a formatting parameter to the LogRecord message property. * as a formatting parameter to the LogRecord message property.
* <p> * <p>
* @param level One of the message level identifiers, e.g. SEVERE * @param level One of the message level identifiers, e.g., SEVERE
* @param sourceClass name of class that issued the logging request * @param sourceClass name of class that issued the logging request
* @param sourceMethod name of method that issued the logging request * @param sourceMethod name of method that issued the logging request
* @param bundleName name of resource bundle to localize msg, * @param bundleName name of resource bundle to localize msg,
...@@ -1214,7 +1216,7 @@ public class Logger { ...@@ -1214,7 +1216,7 @@ public class Logger {
/** /**
* Specify whether or not this logger should send its output * Specify whether or not this logger should send its output
* to it's parent Logger. This means that any LogRecords will * to its parent Logger. This means that any LogRecords will
* also be written to the parent's Handlers, and potentially * also be written to the parent's Handlers, and potentially
* to its parent, recursively up the namespace. * to its parent, recursively up the namespace.
* *
......
...@@ -105,8 +105,8 @@ public interface LoggingMXBean extends PlatformManagedObject { ...@@ -105,8 +105,8 @@ public interface LoggingMXBean extends PlatformManagedObject {
* *
* @param loggerName The name of the <tt>Logger</tt> to be set. * @param loggerName The name of the <tt>Logger</tt> to be set.
* Must be non-null. * Must be non-null.
* @param levelName The name of the level to set the specified logger to, * @param levelName The name of the level to set on the specified logger,
* or <tt>null</tt> if to set the level to inherit * or <tt>null</tt> if setting the level to inherit
* from its nearest ancestor. * from its nearest ancestor.
* *
* @throws IllegalArgumentException if the specified logger * @throws IllegalArgumentException if the specified logger
......
...@@ -136,7 +136,7 @@ public class MemoryHandler extends Handler { ...@@ -136,7 +136,7 @@ public class MemoryHandler extends Handler {
* @param size the number of log records to buffer (must be greater than zero) * @param size the number of log records to buffer (must be greater than zero)
* @param pushLevel message level to push on * @param pushLevel message level to push on
* *
* @throws IllegalArgumentException is size is <= 0 * @throws IllegalArgumentException if size is <= 0
*/ */
public MemoryHandler(Handler target, int size, Level pushLevel) { public MemoryHandler(Handler target, int size, Level pushLevel) {
if (target == null || pushLevel == null) { if (target == null || pushLevel == null) {
...@@ -258,7 +258,7 @@ public class MemoryHandler extends Handler { ...@@ -258,7 +258,7 @@ public class MemoryHandler extends Handler {
* This method checks if the <tt>LogRecord</tt> has an appropriate level and * This method checks if the <tt>LogRecord</tt> has an appropriate level and
* whether it satisfies any <tt>Filter</tt>. However it does <b>not</b> * whether it satisfies any <tt>Filter</tt>. However it does <b>not</b>
* check whether the <tt>LogRecord</tt> would result in a "push" of the * check whether the <tt>LogRecord</tt> would result in a "push" of the
* buffer contents. It will return false if the <tt>LogRecord</tt> is Null. * buffer contents. It will return false if the <tt>LogRecord</tt> is null.
* <p> * <p>
* @param record a <tt>LogRecord</tt> * @param record a <tt>LogRecord</tt>
* @return true if the <tt>LogRecord</tt> would be logged. * @return true if the <tt>LogRecord</tt> would be logged.
......
...@@ -220,7 +220,7 @@ public class StreamHandler extends Handler { ...@@ -220,7 +220,7 @@ public class StreamHandler extends Handler {
* <p> * <p>
* This method checks if the <tt>LogRecord</tt> has an appropriate level and * This method checks if the <tt>LogRecord</tt> has an appropriate level and
* whether it satisfies any <tt>Filter</tt>. It will also return false if * whether it satisfies any <tt>Filter</tt>. It will also return false if
* no output stream has been assigned yet or the LogRecord is Null. * no output stream has been assigned yet or the LogRecord is null.
* <p> * <p>
* @param record a <tt>LogRecord</tt> * @param record a <tt>LogRecord</tt>
* @return true if the <tt>LogRecord</tt> would be logged. * @return true if the <tt>LogRecord</tt> would be logged.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册