01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.views.framelist;
11:
12: import org.eclipse.ui.PlatformUI;
13:
14: /**
15: * Help context ids for the frame list.
16: * <p>
17: * This interface contains constants only; it is not intended to be implemented
18: * or extended.
19: * </p>
20: *
21: */
22: /*package*/interface IFrameListHelpContextIds {
23: public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
24:
25: // Actions
26: public static final String BACK_ACTION = PREFIX
27: + "back_action_context"; //$NON-NLS-1$
28:
29: public static final String FORWARD_ACTION = PREFIX
30: + "forward_action_context"; //$NON-NLS-1$
31:
32: public static final String GO_INTO_ACTION = PREFIX
33: + "go_into_action_context"; //$NON-NLS-1$
34:
35: public static final String UP_ACTION = PREFIX + "up_action_context"; //$NON-NLS-1$
36: }
|