diff options
| author | EVE <EVE@EVE-PC> | 2017-03-14 12:07:14 -0400 |
|---|---|---|
| committer | EVE <EVE@EVE-PC> | 2017-03-14 12:07:14 -0400 |
| commit | 504ca816530efdff06bc202e0432ebd354aec304 (patch) | |
| tree | 4836932fb81d1d625470502c78c94d202c9a7420 /BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java | |
| parent | 5c1163df17c46f7d3e15b6c7949c38843ec56146 (diff) | |
Cleanup
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java')
| -rw-r--r-- | BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java b/BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java index 56f7869..2bf9ccf 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java +++ b/BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java @@ -3,14 +3,14 @@ package bjc.utils.cli; /** * A mode for determining the commands that are valid to enter, and then * handling those commands - * + * * @author ben * */ public interface ICommandMode { /** * Check to see if this mode can handle the specified command - * + * * @param command * The command to check * @return Whether or not this mode can handle the command. It is @@ -22,9 +22,9 @@ public interface ICommandMode { /** * Get the custom prompt for this mode - * + * * @return the custom prompt for this mode - * + * * @throws UnsupportedOperationException * if this mode doesn't support a custom prompt */ @@ -34,7 +34,7 @@ public interface ICommandMode { /** * Get the name of this command mode - * + * * @return The name of this command mode, which is the empty string by * default */ @@ -44,7 +44,7 @@ public interface ICommandMode { /** * Check if this mode uses a custom prompt - * + * * @return Whether or not this mode uses a custom prompt */ public default boolean isCustomPromptEnabled() { @@ -53,7 +53,7 @@ public interface ICommandMode { /** * Process a command in this mode - * + * * @param command * The command to process * @param args |
