blob: cd167c7a3090e80a2bf7412cc4e444c490f12aab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.ui.examples.css.rcp;
/**
* 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.e4.ui.examples.css.rcp.open";
public static final String CMD_MARK_AS_READ = "org.eclipse.e4.ui.examples.css.rcp.markAsRead";
}