blob: 8e7ea30313efd27fec28652b5cf35f3f5603b148 [file] [log] [blame]
package org.eclipse.ui.tutorials.rcp.part3;
/**
* 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_OPEN = "org.eclipse.ui.tutorials.rcp.part3.open";
public static final String CMD_OPEN_MESSAGE = "org.eclipse.ui.tutorials.rcp.part3.openMessage";
}