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

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

Back to the top