From 504ca816530efdff06bc202e0432ebd354aec304 Mon Sep 17 00:00:00 2001 From: EVE Date: Tue, 14 Mar 2017 12:07:14 -0400 Subject: Cleanup --- .../java/bjc/utils/components/IDescribedComponent.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java b/BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java index 6b87ba7..a397bbc 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java +++ b/BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java @@ -3,16 +3,16 @@ package bjc.utils.components; /** * Represents a optional component that has status information associated with * it - * + * * @author ben * */ public interface IDescribedComponent { /** * Get the author of this component - * + * * Providing this is optional, with "Anonymous" as the default author - * + * * @return The author of the component */ public default String getAuthor() { @@ -21,10 +21,10 @@ public interface IDescribedComponent { /** * Get the description of this component - * + * * Providing this is optional, with the default being a note that no * description was provided - * + * * @return The description of the component */ public default String getDescription() { @@ -33,18 +33,18 @@ public interface IDescribedComponent { /** * Get the name of this component. - * + * * This is the only thing required of all components - * + * * @return The name of the component */ public String getName(); /** * Get the version of this component - * + * * Providing this is optional, with "1" as the default version - * + * * @return The version of this component */ public default int getVersion() { -- cgit v1.2.3