blob: 42a745511a7ade35a8a57517c7ae9970a5f97bf1 [file] [log] [blame]
package org.eclipse.equinox.p2.examples.rcp.prestartupdate;
/**
* 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.prestartupdate.open";
public static final String CMD_OPEN_MESSAGE = "org.eclipse.equinox.p2.examples.rcp.prestartupdate.openMessage";
}