From 01cb9f504c860bc1c037a44f3a76bf342a293d46 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 22 Mar 2016 12:28:35 -0400 Subject: General formatting cleanup and documentation update --- .../bjc/utils/components/ComponentDescription.java | 44 ++++++++++++---------- 1 file changed, 25 insertions(+), 19 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/components/ComponentDescription.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/components/ComponentDescription.java b/BJC-Utils2/src/main/java/bjc/utils/components/ComponentDescription.java index 5923f26..3cb16b4 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/components/ComponentDescription.java +++ b/BJC-Utils2/src/main/java/bjc/utils/components/ComponentDescription.java @@ -2,33 +2,39 @@ package bjc.utils.components; /** * Generic implementation of a description for a component + * * @author ben * */ public class ComponentDescription implements IDescribedComponent { - /** - * The name of the component - */ - private String name; /** * The author of the component */ - private String author; + private String author; /** * The description of the component */ - private String description; + private String description; + /** + * The name of the component + */ + private String name; /** * The version of the component */ - private int version; - + private int version; + /** * Create a new component description - * @param name The name of the component - * @param author The author of the component - * @param description The description of the component - * @param version The version of the component + * + * @param name + * The name of the component + * @param author + * The author of the component + * @param description + * The description of the component + * @param version + * The version of the component */ public ComponentDescription(String name, String author, String description, int version) { @@ -38,21 +44,21 @@ public class ComponentDescription implements IDescribedComponent { this.version = version; } - @Override - public String getName() { - return name; - } - @Override public String getAuthor() { return author; } - + @Override public String getDescription() { return description; } - + + @Override + public String getName() { + return name; + } + @Override public int getVersion() { return version; -- cgit v1.2.3