Class OtherCommandModule
java.lang.Object
dev.esophose.playerparticles.command.OtherCommandModule
- All Implemented Interfaces:
CommandModuleSecondary
public class OtherCommandModule extends java.lang.Object implements CommandModuleSecondary
-
Constructor Summary
Constructors Constructor Description OtherCommandModule()
-
Method Summary
Modifier and Type Method Description void
onCommandExecute(org.bukkit.command.CommandSender sender, java.lang.String[] args)
Called when this command gets executedjava.util.List<java.lang.String>
onTabComplete(org.bukkit.command.CommandSender sender, java.lang.String[] args)
Called when a player tries to tab complete this command
-
Constructor Details
-
OtherCommandModule
public OtherCommandModule()
-
-
Method Details
-
onCommandExecute
public void onCommandExecute(org.bukkit.command.CommandSender sender, java.lang.String[] args)Description copied from interface:CommandModuleSecondary
Called when this command gets executed- Specified by:
onCommandExecute
in interfaceCommandModuleSecondary
- Parameters:
sender
- The CommandSender who executed this commandargs
- The arguments to this command
-
onTabComplete
public java.util.List<java.lang.String> onTabComplete(org.bukkit.command.CommandSender sender, java.lang.String[] args)Description copied from interface:CommandModuleSecondary
Called when a player tries to tab complete this command- Specified by:
onTabComplete
in interfaceCommandModuleSecondary
- Parameters:
sender
- The CommandSender who is tab completing this commandargs
- Arguments typed so far- Returns:
- A list of possible argument values
-