Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2009 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
 * @since 3.2
19
 * @noextend This interface is not intended to be extended by clients.
20
 * @noimplement This interface is not intended to be implemented by clients.
21
 * 
22
 */
23
public interface ICommonActionConstants {
24

    
25
	/**
26
	 * The 'open' retargetable action id.
27
	 */
28
	public static final String OPEN = "org.eclipse.ui.navigator.Open"; //$NON-NLS-1$
29

    
30
}
(11-11/49)