KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > framelist > IFrameListHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 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.views.framelist;
12
13 import org.eclipse.ui.PlatformUI;
14
15 /**
16  * Help context ids for the frame list.
17  * <p>
18  * This interface contains constants only; it is not intended to be implemented
19  * or extended.
20  * </p>
21  *
22  */

23 /*package*/interface IFrameListHelpContextIds {
24     public static final String JavaDoc PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
25

26     // Actions
27
public static final String JavaDoc BACK_ACTION = PREFIX + "back_action_context"; //$NON-NLS-1$
28

29     public static final String JavaDoc FORWARD_ACTION = PREFIX
30             + "forward_action_context"; //$NON-NLS-1$
31

32     public static final String JavaDoc GO_INTO_ACTION = PREFIX
33             + "go_into_action_context"; //$NON-NLS-1$
34

35     public static final String JavaDoc UP_ACTION = PREFIX + "up_action_context"; //$NON-NLS-1$
36
}
37
Popular Tags