summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.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/cli/ICommand.java
parent5c1163df17c46f7d3e15b6c7949c38843ec56146 (diff)
Cleanup
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.java b/BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.java
index a72ecdf..6703460 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/cli/ICommand.java
@@ -2,35 +2,35 @@ package bjc.utils.cli;
/**
* Represents a command that can be invoked from a {@link ICommandMode}
- *
+ *
* @author ben
*
*/
public interface ICommand {
/**
* Create a command that serves as an alias to this one
- *
+ *
* @return A command that serves as an alias to this one
*/
public ICommand aliased();
/**
* Get the handler that executes this command
- *
+ *
* @return The handler that executes this command
*/
public ICommandHandler getHandler();
/**
* Get the help entry for this command
- *
+ *
* @return The help entry for this command
*/
public ICommandHelp getHelp();
/**
* Check if this command is an alias of another command
- *
+ *
* @return Whether or not this command is an alias of another
*/
public default boolean isAlias() {