A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / model / IHelpContextIds.java
1 package net.sourceforge.phpdt.externaltools.internal.model;
2
3 /**********************************************************************
4  Copyright (c) 2002 IBM Corp. and others. All rights reserved.
5  This file is made available under the terms of the Common Public License v1.0
6  which accompanies this distribution, and is available at
7  http://www.eclipse.org/legal/cpl-v10.html
8  �
9  Contributors:
10  **********************************************************************/
11
12 /**
13  * Help context ids for the external tools.
14  * <p>
15  * This interface contains constants only; it is not intended to be implemented
16  * or extended.
17  * </p>
18  */
19 public interface IHelpContextIds {
20         public static final String PREFIX = "net.sourceforge.phpdt.externaltools."; //$NON-NLS-1$
21
22         // Actions
23         public static final String NEW_TOOL_ACTION = PREFIX
24                         + "new_tool_action_context"; //$NON-NLS-1$
25
26         public static final String DUPLICATE_TOOL_ACTION = PREFIX
27                         + "duplicate_tool_action_context"; //$NON-NLS-1$
28
29         public static final String DELETE_TOOL_ACTION = PREFIX
30                         + "delete_tool_action_context"; //$NON-NLS-1$
31
32         public static final String RENAME_TOOL_ACTION = PREFIX
33                         + "rename_tool_action_context"; //$NON-NLS-1$
34
35         public static final String REFRESH_VIEW_ACTION = PREFIX
36                         + "refresh_view_action_context"; //$NON-NLS-1$
37
38         public static final String RUN_TOOL_ACTION = PREFIX
39                         + "run_tool_action_context"; //$NON-NLS-1$
40
41         public static final String RUN_WITH_TOOL_ACTION = PREFIX
42                         + "run_with_tool_action_context"; //$NON-NLS-1$
43
44         public static final String EDIT_TOOL_PROPERTIES_ACTION = PREFIX
45                         + "edit_tool_properties_action_context"; //$NON-NLS-1$
46
47         // public static final String ANT_ACTION = PREFIX + "ant_action_context";
48         // //$NON-NLS-1$
49
50         // Dialogs
51         public static final String RESOURCE_SELECTION_DIALOG = PREFIX
52                         + "resource_selection_dialog_context"; //$NON-NLS-1$
53
54         // Preference Pages
55         // public static final String ANT_PREFERENCE_PAGE = PREFIX +
56         // "ant_preference_page_context"; //$NON-NLS-1$
57         public static final String ADD_TASK_DIALOG = PREFIX
58                         + "add_task_dialog_context"; //$NON-NLS-1$
59
60         // Property Pages
61         public static final String TOOL_MAIN_PROPERTY_PAGE = PREFIX
62                         + "tool_main_property_page_context"; //$NON-NLS-1$
63
64         public static final String TOOL_OPTION_PROPERTY_PAGE = PREFIX
65                         + "tool_option_property_page_context"; //$NON-NLS-1$
66
67         public static final String TOOL_REFRESH_PROPERTY_PAGE = PREFIX
68                         + "tool_refresh_property_page_context"; //$NON-NLS-1$
69
70         public static final String ANT_TARGETS_PROPERTY_PAGE = PREFIX
71                         + "ant_targets_property_page_context"; //$NON-NLS-1$
72
73         // Views
74         public static final String EXTERNAL_TOOLS_VIEW = PREFIX
75                         + "external_tools_view_context"; //$NON-NLS-1$
76
77         // Wizards
78         // public static final String ANT_LAUNCH_WIZARD = PREFIX +
79         // "ant_launch_wizard_context"; //$NON-NLS-1$
80
81         // Wizard Pages
82         public static final String TOOL_MAIN_WIZARD_PAGE = PREFIX
83                         + "tool_main_wizard_page_context"; //$NON-NLS-1$
84
85         public static final String TOOL_OPTION_WIZARD_PAGE = PREFIX
86                         + "tool_option_wizard_page_context"; //$NON-NLS-1$
87
88         public static final String TOOL_REFRESH_WIZARD_PAGE = PREFIX
89                         + "tool_refresh_wizard_page_context"; //$NON-NLS-1$
90         // public static final String ANT_TARGETS_WIZARD_PAGE = PREFIX +
91         // "ant_targets_wizard_page_context"; //$NON-NLS-1$
92         // public static final String ANT_LAUNCH_WIZARD_PAGE = PREFIX +
93         // "ant_launch_wizard_page_context"; //$NON-NLS-1$
94 }