Files
Bukkit/src/main/java/org/bukkit/command/TabExecutor.java
Wesley Wolfe 8a1dbc38da Pulling all pending Bukkit-JavaDoc changes
A special thanks goes to @aerouk for almost all of the changes found here.
2013-12-15 01:09:18 -05:00

9 lines
206 B
Java

package org.bukkit.command;
/**
* This class is provided as a convenience to implement both TabCompleter and
* CommandExecutor.
*/
public interface TabExecutor extends TabCompleter, CommandExecutor {
}