summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/cli/ICommandMode.java
diff options
context:
space:
mode:
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.java14
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