Author: ggregory
Date: Sun Nov  4 13:55:58 2012
New Revision: 1405544

URL: http://svn.apache.org/viewvc?rev=1405544&view=rev
Log:
Jaavdoc: use the active voice.

Modified:
    
logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java

Modified: 
logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java
URL: 
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java?rev=1405544&r1=1405543&r2=1405544&view=diff
==============================================================================
--- 
logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java
 (original)
+++ 
logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java
 Sun Nov  4 13:55:58 2012
@@ -128,7 +128,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Set the parent of this LoggerConfig.
+     * Sets the parent of this LoggerConfig.
      * @param parent the parent LoggerConfig.
      */
     public void setParent(LoggerConfig parent) {
@@ -144,7 +144,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Add an Appender to the LoggerConfig.
+     * Adds an Appender to the LoggerConfig.
      * @param appender The Appender to add.
      * @param level The Level to use.
      * @param filter A Filter for the Appender reference.
@@ -154,7 +154,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Remove the Appender with the specific name.
+     * Removes the Appender with the specific name.
      * @param name The name of the Appender.
      */
     public void removeAppender(String name) {
@@ -177,7 +177,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Remove all Appenders.
+     * Removes all Appenders.
      */
     protected void clearAppenders() {
         waitForCompletion();
@@ -209,7 +209,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Set the logging Level.
+     * Sets the logging Level.
      * @param level The logging Level.
      */
     public void setLevel(Level level) {
@@ -233,7 +233,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Set the LogEventFactory. Usually the LogEventFactory will be this 
LoggerConfig.
+     * Sets the LogEventFactory. Usually the LogEventFactory will be this 
LoggerConfig.
      * @param logEventFactory the LogEventFactory.
      */
     public void setLogEventFactory(LogEventFactory logEventFactory) {
@@ -249,7 +249,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Set the additive setting.
+     * Sets the additive setting.
      * @param additive true if thee LoggerConfig should be additive, false 
otherwise.
      */
     public void setAdditive(boolean additive) {
@@ -257,7 +257,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Log an event.
+     * Logs an event.
      * @param loggerName The name of the Logger.
      * @param marker A Marker or null if none is present.
      * @param fqcn The fully qualified class name of the caller.
@@ -281,7 +281,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Wait for all log events to complete before shutting down this 
loggerConfig.
+     * Waits for all log events to complete before shutting down this 
loggerConfig.
      */
     private synchronized void waitForCompletion() {
         if (shutdown) {
@@ -336,7 +336,7 @@ public class LoggerConfig extends Abstra
     }
 
     /**
-     * Create a log event.
+     * Creates a log event.
      * @param loggerName The name of the Logger.
      * @param marker An optional Marker.
      * @param fqcn The fully qualified class name of the caller.


Reply via email to