summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-02-28 11:42:09 +0000
committerDinnerbone <dinnerbone@dinnerbone.com>2011-02-28 11:42:09 +0000
commit0f95f3063a0f9104018e75c9e1bd3aa4f1b8593d (patch)
tree3d84c800a42b58774f30db5864902b3e12912ade /src
parent2ca3d148cce22c92813b1e974ab7f7c63cbeb815 (diff)
downloadbukkit-0f95f3063a0f9104018e75c9e1bd3aa4f1b8593d.tar
bukkit-0f95f3063a0f9104018e75c9e1bd3aa4f1b8593d.tar.gz
bukkit-0f95f3063a0f9104018e75c9e1bd3aa4f1b8593d.tar.lz
bukkit-0f95f3063a0f9104018e75c9e1bd3aa4f1b8593d.tar.xz
bukkit-0f95f3063a0f9104018e75c9e1bd3aa4f1b8593d.zip
command.set/getDescription replaces a now deprecated set/getTooltip + javadocs
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/bukkit/command/Command.java76
-rw-r--r--src/main/java/org/bukkit/command/SimpleCommandMap.java6
2 files changed, 74 insertions, 8 deletions
diff --git a/src/main/java/org/bukkit/command/Command.java b/src/main/java/org/bukkit/command/Command.java
index 8629b012..d80b9283 100644
--- a/src/main/java/org/bukkit/command/Command.java
+++ b/src/main/java/org/bukkit/command/Command.java
@@ -3,46 +3,112 @@ package org.bukkit.command;
import java.util.ArrayList;
import java.util.List;
+/**
+ * Represents a Command, which executes various tasks upon user input
+ */
public abstract class Command {
private final String name;
private List<String> aliases;
- protected String tooltip = "";
+ protected String description = "";
protected String usageMessage;
- public Command(String name) {
+ protected Command(String name) {
this.name = name;
this.aliases = new ArrayList<String>();
this.usageMessage = "/" + name;
}
- public abstract boolean execute(CommandSender sender, String currentAlias, String[] args);
+ /**
+ * Executes the command, returning its success
+ *
+ * @param sender Source object which is executing this command
+ * @param commandLabel The alias of the command used
+ * @param args All arguments passed to the command, split via ' '
+ * @return true if the command was successful, otherwise false
+ */
+ public abstract boolean execute(CommandSender sender, String commandLabel, String[] args);
+ /**
+ * Returns the name of this command
+ *
+ * @return Name of this command
+ */
public String getName() {
return name;
}
+ /**
+ * Returns a list of aliases registered to this command
+ *
+ * @return List of aliases
+ */
public List<String> getAliases() {
return aliases;
}
+ /**
+ * Gets a brief description of this command
+ *
+ * @return Description of this command
+ */
+ public String getDescription() {
+ return description;
+ }
+
+ /**
+ * @deprecated Use {@link #getDescription()}
+ */
+ @Deprecated
public String getTooltip() {
- return tooltip;
+ return getDescription();
}
+ /**
+ * Gets an example usage of this command
+ *
+ * @return One or more example usages
+ */
public String getUsage() {
return usageMessage;
}
+ /**
+ * Sets the list of aliases registered to this command
+ *
+ * @param aliases Aliases to register to this command
+ * @return This command object, for linking
+ */
public Command setAliases(List<String> aliases) {
this.aliases = aliases;
return this;
}
+ /**
+ * Sets a brief description of this command
+ *
+ * @param description New command description
+ * @return This command object, for linking
+ */
+ public Command setDescription(String description) {
+ this.description = description;
+ return this;
+ }
+
+ /**
+ * @deprecated Use {@link #setDescription(description)}
+ */
+ @Deprecated
public Command setTooltip(String tooltip) {
- this.tooltip = tooltip;
+ this.description = tooltip;
return this;
}
+ /**
+ * Sets the example usage of this command
+ *
+ * @param usage New example usage
+ * @return This command object, for linking
+ */
public Command setUsage(String usage) {
this.usageMessage = usage;
return this;
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
index b21c55c5..94241ec3 100644
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
@@ -103,7 +103,7 @@ public final class SimpleCommandMap implements CommandMap {
public VersionCommand(String name, Server server) {
super(name);
this.server = server;
- this.tooltip = "Gets the version of this server including any plugins in use";
+ this.description = "Gets the version of this server including any plugins in use";
this.usageMessage = "/version [plugin name]";
this.setAliases(Arrays.asList("ver", "about"));
}
@@ -184,7 +184,7 @@ public final class SimpleCommandMap implements CommandMap {
public ReloadCommand(String name, Server server) {
super(name);
this.server = server;
- this.tooltip = "Reloads the server configuration and plugins";
+ this.description = "Reloads the server configuration and plugins";
this.usageMessage = "/reload";
this.setAliases(Arrays.asList("rl"));
}
@@ -208,7 +208,7 @@ public final class SimpleCommandMap implements CommandMap {
public PluginsCommand(String name, Server server) {
super(name);
this.server = server;
- this.tooltip = "Gets a list of plugins running on the server";
+ this.description = "Gets a list of plugins running on the server";
this.usageMessage = "/plugins";
this.setAliases(Arrays.asList("pl"));
}