add more test scenarios

This commit is contained in:
Aikar
2019-02-24 14:36:14 -05:00
parent 063bc2f0df
commit 975eb22afd
@@ -1,12 +1,32 @@
package co.aikar.acfexample;
import co.aikar.commands.BaseCommand;
import co.aikar.commands.annotation.CatchUnknown;
import co.aikar.commands.annotation.CommandAlias;
import co.aikar.commands.annotation.Default;
import co.aikar.commands.annotation.Single;
import co.aikar.commands.annotation.Subcommand;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@CommandAlias("soctest")
public class SomeOtherCommand extends BaseCommand {
@Subcommand("foo")
public void onFoo1(Player player) {
player.sendMessage("you foo'd");
}
@Subcommand("foo")
public void onFoo2(CommandSender sender, @Single String foo) {
sender.sendMessage("You foo'd with " + foo);
}
@CatchUnknown
public void onUnknown(CommandSender sender) {
sender.sendMessage("UNKNOWN!");
}
@Default
public void test(Player player, String string, @Default("1") int integer) {
player.sendMessage("Hi " + string + " - " + integer);