Bukkit-API
1.7.9-R0.2
The inofficial Bukkit-API
Main Page
Related Pages
Packages
Classes
Files
File List
TabCommandExecutor.java
1
package
org.bukkit.command;
2
3
import
java.util.List;
4
5
/**
6
* Represents a class which can handle command tab completion and commands
7
*
8
* @deprecated Remains for plugins that would have implemented it even without
9
* functionality
10
* @see TabExecutor
11
*/
12
@Deprecated
13
public
interface
TabCommandExecutor
extends
CommandExecutor
{
14
public
List<String> onTabComplete();
15
16
}
org.bukkit.command.CommandExecutor
Definition:
CommandExecutor.java:6
org.bukkit.command.TabCommandExecutor
Definition:
TabCommandExecutor.java:13