Bukkit/src/main/java/org/bukkit/command/TabCommandExecutor.java
2013-09-10 21:02:53 -05:00

16 lines
370 B
Java

package org.bukkit.command;
import java.util.List;
/**
* Represents a class which can handle command tab completion and commands
*
* @deprecated Remains for plugins that would have implemented it even without functionality
* @see TabExecutor
*/
@Deprecated
public interface TabCommandExecutor extends CommandExecutor {
public List<String> onTabComplete();
}