001 package org.bukkit.command;
002
003 import java.util.List;
004
005 /**
006 * Represents a class which can handle command tab completion and commands
007 *
008 * @deprecated Remains for plugins that would have implemented it even without
009 * functionality
010 * @see TabExecutor
011 */
012 @Deprecated
013 public interface TabCommandExecutor extends CommandExecutor {
014 public List<String> onTabComplete();
015
016 }