KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > externaltools > internal > model > IExternalToolsHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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.externaltools.internal.model;
12
13
14 /**
15  * Help context ids for the external tools.
16  * <p>
17  * This interface contains constants only; it is not intended to be implemented
18  * or extended.
19  * </p>
20  */

21 public interface IExternalToolsHelpContextIds {
22     public static final String JavaDoc PREFIX = "org.eclipse.ui.externaltools."; //$NON-NLS-1$
23

24     // Preference Pages
25
public static final String JavaDoc EXTERNAL_TOOLS_PREFERENCE_PAGE = PREFIX + "preference_page_context"; //$NON-NLS-1$
26

27     // Property Pages
28
public static final String JavaDoc EXTERNAL_TOOLS_BUILDER_PROPERTY_PAGE = PREFIX + "builder_property_page_context"; //$NON-NLS-1$
29

30     //Dialogs
31
public static final String JavaDoc MESSAGE_WITH_TOGGLE_DIALOG = PREFIX + "message_with_toggle_dialog_context"; //$NON-NLS-1$
32
public static final String JavaDoc FILE_SELECTION_DIALOG = PREFIX + "file_selection_dialog_context"; //$NON-NLS-1$
33

34     //Launch configuration dialog tabs
35
public static final String JavaDoc EXTERNAL_TOOLS_LAUNCH_CONFIGURATION_DIALOG_BUILDER_TAB = PREFIX + "builders_tab_context"; //$NON-NLS-1$
36
public static final String JavaDoc EXTERNAL_TOOLS_LAUNCH_CONFIGURATION_DIALOG_PROGRAM_MAIN_TAB = PREFIX + "program_main_tab_context"; //$NON-NLS-1$
37
}
38
Popular Tags