1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ui.navigator; 12 13 /** 14 * 15 * Defines constants for the retargetable actions available in the Common Viewer 16 * context menu. 17 * 18 * 19 * <p> 20 * This interface is not intended to be implemented by clients. 21 * </p> 22 * 23 * @since 3.2 24 * 25 */ 26 public interface ICommonActionConstants { 27 28 /** 29 * The 'open' retargetable action id. 30 */ 31 public static final String OPEN = "org.eclipse.ui.navigator.Open"; //$NON-NLS-1$ 32 33 } 34