www.pudn.com > talk-plugins.rar > ICommandIds.java


package talkServer;

/**
 * Interface defining the application's command IDs. Key bindings can be defined
 * for specific commands. To associate an action with a command, use
 * IAction.setActionDefinitionId(commandId).
 * 
 * @see org.eclipse.jface.action.IAction#setActionDefinitionId(String)
 */
public interface ICommandIds {

	public static final String CMD_LOAD_IP_PASSWORD_MAP = "TalkServer.loadIPPasswordMap";

	public static final String CMD_LOAD_IP_STATE_MAP = "TalkServer.loadIPStateMap";

	public static final String CMD_START_THREAD = "TalkServer.startThread";
}