blob: ba1f741fa59b393a45d81c05e4a441d34ca33ca3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.framelist;
import org.eclipse.ui.PlatformUI;
/**
* Help context ids for the frame list.
* <p>
* This interface contains constants only; it is not intended to be implemented
* or extended.
* </p>
*
*/
/*package*/interface IFrameListHelpContextIds {
public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
// Actions
public static final String BACK_ACTION = PREFIX + "back_action_context"; //$NON-NLS-1$
public static final String FORWARD_ACTION = PREFIX
+ "forward_action_context"; //$NON-NLS-1$
public static final String GO_INTO_ACTION = PREFIX
+ "go_into_action_context"; //$NON-NLS-1$
public static final String UP_ACTION = PREFIX + "up_action_context"; //$NON-NLS-1$
}