9 lines
206 B
Java
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 {
|
|
}
|