Repository: logging-log4j2 Updated Branches: refs/heads/LOG4J2-952 7f7b4c0b4 -> e0edb76c9
Javadoc: Use the active voice. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/e0edb76c Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/e0edb76c Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/e0edb76c Branch: refs/heads/LOG4J2-952 Commit: e0edb76c9c8428636ee39e35cf2cb2de72eca4e9 Parents: 7f7b4c0 Author: ggregory <[email protected]> Authored: Mon Aug 31 12:25:02 2015 -0700 Committer: ggregory <[email protected]> Committed: Mon Aug 31 12:25:02 2015 -0700 ---------------------------------------------------------------------- .../core/config/builder/api/ComponentBuilder.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/e0edb76c/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/ComponentBuilder.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/ComponentBuilder.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/ComponentBuilder.java index e397ef5..8d48a82 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/ComponentBuilder.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/ComponentBuilder.java @@ -27,7 +27,7 @@ import org.apache.logging.log4j.core.util.Builder; public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Component> { /** - * Add an attribute to the component. + * Adds an attribute to the component. * @param key The attribute key. * @param value The value of the attribute. * @return The ComponentBuilder. @@ -35,7 +35,7 @@ public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Co T addAttribute(String key, String value); /** - * Add a logging Level attribute to the component. + * Adds a logging Level attribute to the component. * @param key The attribute key. * @param level The logging Level. * @return The ComponentBuilder. @@ -43,7 +43,7 @@ public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Co T addAttribute(String key, Level level); /** - * Add an enumeration. + * Adds an enumeration. * @param key The attribute key. * @param value The enumeration. * @return The ComponentBuilder. @@ -51,7 +51,7 @@ public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Co T addAttribute(String key, Enum<?> value); /** - * Add an integer attribute. + * Adds an integer attribute. * @param key The attribute key. * @param value The integer value. * @return The ComponentBuilder. @@ -59,7 +59,7 @@ public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Co T addAttribute(String key, int value); /** - * Add a boolean attribute. + * Adds a boolean attribute. * @param key The attribute key. * @param value The integer value. * @return The ComponentBuilder. @@ -67,7 +67,7 @@ public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Co T addAttribute(String key, boolean value); /** - * Add an Object attribute. + * Adds an Object attribute. * @param key The attribute key. * @param value The integer value. * @return The ComponentBuilder. @@ -75,20 +75,20 @@ public interface ComponentBuilder<T extends ComponentBuilder> extends Builder<Co T addAttribute(String key, Object value); /** - * Add a sub component. + * Adds a sub component. * @param builder The Assembler for the subcomponent with all of its attributes and sub-components set. * @return The ComponentBuilder. */ T addComponent(ComponentBuilder<?> builder); /** - * Return the name of the component, if any. + * Returns the name of the component, if any. * @return The components name or null if it doesn't have one. */ String getName(); /** - * Retrieve the ConfigurationBuilder. + * Retrieves the ConfigurationBuilder. * @return The ConfiguratonAssembler. */ ConfigurationBuilder<? extends Configuration> getBuilder();
