summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java
diff options
context:
space:
mode:
authorEVE <EVE@EVE-PC>2017-03-14 12:07:14 -0400
committerEVE <EVE@EVE-PC>2017-03-14 12:07:14 -0400
commit504ca816530efdff06bc202e0432ebd354aec304 (patch)
tree4836932fb81d1d625470502c78c94d202c9a7420 /BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java
parent5c1163df17c46f7d3e15b6c7949c38843ec56146 (diff)
Cleanup
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java18
1 files changed, 9 insertions, 9 deletions
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() {