/******************************************************************************* * Copyright (c) 2005, 2015 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.ui.navigator; /** * * Defines constants for the retargetable actions available in the Common Viewer * context menu. * * @since 3.2 * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. * */ public interface ICommonActionConstants { /** * The 'open' retargetable action id. */ public static final String OPEN = "org.eclipse.ui.navigator.Open"; //$NON-NLS-1$ }