KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > $packageName$ > ICommandIds


1 package $packageName$;
2
3 /**
4  * Interface defining the application's command IDs.
5  * Key bindings can be defined for specific commands.
6  * To associate an action with a command, use IAction.setActionDefinitionId(commandId).
7  *
8  * @see org.eclipse.jface.action.IAction#setActionDefinitionId(String)
9  */

10 public interface ICommandIds {
11
12     public static final String JavaDoc CMD_OPEN = "$pluginId$.open";
13     public static final String JavaDoc CMD_OPEN_MESSAGE = "$pluginId$.openMessage";
14     
15 }
16
Popular Tags