summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/components/IDescribedComponent.java
diff options
context:
space:
mode:
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() {