Project

General

Profile

Download (1.31 KB) Statistics
| Branch: | Tag: | Revision:
1
/*******************************************************************************
2
 * Copyright (c) 2000, 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.internal.navigator.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 PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
25

    
26
    // Actions
27
    public static final String BACK_ACTION = PREFIX + "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
}
(8-8/15)