KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > navigator > INavigatorHelpContextIds


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.internal.navigator;
12
13 /**
14  * The help context ids for the Common Navigator.
15  *
16  * @since 3.2
17  *
18  */

19 public interface INavigatorHelpContextIds {
20
21     /** */
22     public static final String JavaDoc PREFIX = NavigatorPlugin.PLUGIN_ID + "."; //$NON-NLS-1$
23

24     /** */
25     public static final String JavaDoc TEXT_CUT_ACTION = PREFIX
26             + "text_cut_action_context"; //$NON-NLS-1$
27

28     /** */
29     public static final String JavaDoc TEXT_COPY_ACTION = PREFIX
30             + "text_copy_action_context"; //$NON-NLS-1$
31

32     /** */
33     public static final String JavaDoc TEXT_PASTE_ACTION = PREFIX
34             + "text_paste_action_context"; //$NON-NLS-1$
35

36     /** */
37     public static final String JavaDoc TEXT_DELETE_ACTION = PREFIX
38             + "text_delete_action_context"; //$NON-NLS-1$
39

40     /** */
41     public static final String JavaDoc TEXT_SELECT_ALL_ACTION = PREFIX
42             + "text_select_all_action_context"; //$NON-NLS-1$
43
}
44
Popular Tags