Author: ggregory
Date: Wed Jan 15 18:15:45 2014
New Revision: 1558491
URL: http://svn.apache.org/r1558491
Log:
Javadoc: Use the active voice.
Modified:
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LogEvent.java
Modified:
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LogEvent.java
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LogEvent.java?rev=1558491&r1=1558490&r2=1558491&view=diff
==============================================================================
---
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LogEvent.java
(original)
+++
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LogEvent.java
Wed Jan 15 18:15:45 2014
@@ -31,38 +31,38 @@ import org.apache.logging.log4j.message.
public interface LogEvent extends Serializable {
/**
- * Get level.
+ * Gets the level.
* @return level.
*/
Level getLevel();
/**
- * Get logger name.
+ * Gets the logger name.
* @return logger name, may be null.
*/
String getLoggerName();
/**
- * Get source of logging request.
+ * Gets the source of logging request.
* @return source of logging request, may be null.
*/
StackTraceElement getSource();
/**
- * Get the message associated with the event.
+ * Gets the message associated with the event.
*
* @return message.
*/
Message getMessage();
/**
- * Get the Marker associated with the event.
+ * Gets the Marker associated with the event.
* @return Marker
*/
Marker getMarker();
/**
- * Get thread name.
+ * Gets thread name.
* @return thread name, may be null.
* @doubt guess this could go into a thread context object too.
* (RG) Why?
@@ -80,21 +80,21 @@ public interface LogEvent extends Serial
/**
- * Get throwable associated with logging request.
+ * Gets throwable associated with logging request.
* @return throwable, may be null.
*/
Throwable getThrown();
/**
- * Get the MDC data.
+ * Gets the MDC data.
*
* @return A copy of the Mapped Diagnostic Context or null.
*/
Map<String, String> getContextMap();
/**
- * Get the NDC data.
+ * Gets the NDC data.
*
* @return A copy of the Nested Diagnostic Context or null;
*/