Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / command / TabCommandExecutor.java
@vlad20012 vlad20012 on 24 Feb 2017 369 bytes initial
package org.bukkit.command;

import java.util.List;

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

}