Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6bf884ccbd6f5ae6b0a13782bbb1103b84404996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.equinox.p2.examples.rcp.cloud;

/**
 * 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.equinox.p2.examples.rcp.cloud.open";
    public static final String CMD_OPEN_MESSAGE = "org.eclipse.equinox.p2.examples.rcp.cloud.openMessage";
    
}

Back to the top