KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > directory > ldapstudio > schemas > PluginConstants


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  *
19  */

20
21 package org.apache.directory.ldapstudio.schemas;
22
23
24 import org.apache.directory.ldapstudio.schemas.view.preferences.HierarchyViewPreferencePage;
25 import org.apache.directory.ldapstudio.schemas.view.preferences.SchemaElementsViewPreferencePage;
26 import org.apache.directory.ldapstudio.schemas.view.preferences.SchemasViewPreferencePage;
27
28
29 /**
30  * This interface is used to store all constants used in the Schemas Editor Plugin.
31  *
32  * @author <a HREF="mailto:dev@directory.apache.org">Apache Directory Project</a>
33  * @version $Rev$, $Date$
34  */

35 public interface PluginConstants
36 {
37     // Preferences - Schema Elements View
38
/** The preference ID for Schema Elements View Label */
39     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_LABEL = SchemaElementsViewPreferencePage.ID
40         + ".label.labelValue"; //$NON-NLS-1$
41

42     /** The preference value for Schema Elements View First Name label */
43     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_LABEL_FIRST_NAME = 0;
44
45     /** The preference value for Schema Elements View All Aliases label */
46     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_LABEL_ALL_ALIASES = 1;
47
48     /** The preference value for Schema Elements View OID label */
49     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_LABEL_OID = 2;
50
51     /** The preference ID for Schema Elements View Abbreviate */
52     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_ABBREVIATE = SchemaElementsViewPreferencePage.ID
53         + ".label.abbreviate"; //$NON-NLS-1$
54

55     /** The preference ID for Schema Elements View Abbreviate Max Length*/
56     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_ABBREVIATE_MAX_LENGTH = SchemaElementsViewPreferencePage.ID
57         + ".label.abbreviate.maxLength"; //$NON-NLS-1$
58

59     /** The preference ID for Schema Elements View Display Secondary Label */
60     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_SECONDARY_LABEL_DISPLAY = SchemaElementsViewPreferencePage.ID
61         + ".secondaryLabel.display"; //$NON-NLS-1$
62

63     /** The preference ID for Schema Elements View Secondary Label */
64     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_SECONDARY_LABEL = SchemaElementsViewPreferencePage.ID
65         + ".secondaryLabel.labelValue"; //$NON-NLS-1$
66

67     /** The preference ID for Schema Elements View Abbreviate Secondary Label */
68     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_SECONDARY_LABEL_ABBREVIATE = SchemaElementsViewPreferencePage.ID
69         + ".secondaryLabel.abbreviate"; //$NON-NLS-1$
70

71     /** The preference ID for Schema Elements View Abbreviate Secondary Label Max Length*/
72     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_SECONDARY_LABEL_ABBREVIATE_MAX_LENGTH = SchemaElementsViewPreferencePage.ID
73         + ".secondaryLabel.abbreviate.maxLength"; //$NON-NLS-1$
74

75     /** The preference ID for Schema Elements View Grouping */
76     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_GROUPING = Activator.PLUGIN_ID
77         + ".preferences.SchemaElementsView.grouping"; //$NON-NLS-1$
78

79     /** The preference value for Schema Elements View Grouping 'attribute types first' */
80     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_GROUPING_ATFIRST = 0;
81
82     /** The preference value for Schema Elements View Grouping 'object classes first' */
83     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_GROUPING_OCFIRST = 1;
84
85     /** The preference value for Schema Elements View Grouping 'mixed' */
86     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_GROUPING_MIXED = 2;
87
88     /** The preference ID for Schema Elements View Sorting By */
89     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_SORTING_BY = Activator.PLUGIN_ID
90         + ".preferences.SchemaElementsView.sortingBy"; //$NON-NLS-1$
91

92     /** The preference value for Schema Elements View Sorting 'First Name' */
93     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_SORTING_BY_FIRSTNAME = 0;
94
95     /** The prefence value for Schema Elements View Sorting 'OID' */
96     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_SORTING_BY_OID = 1;
97
98     /** The preference ID for Schema Elements View Sorting Order */
99     public static final String JavaDoc PREFS_SCHEMA_ELEMENTS_VIEW_SORTING_ORDER = Activator.PLUGIN_ID
100         + ".preferences.SchemaElementsView.sortingOrder"; //$NON-NLS-1$
101

102     /** The preference value for Schema Elements View Sorting 'ascending' */
103     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_SORTING_ORDER_ASCENDING = 0;
104
105     /** The prefence value for Schema Elements View Sorting 'descending' */
106     public static final int PREFS_SCHEMA_ELEMENTS_VIEW_SORTING_ORDER_DESCENDING = 1;
107
108     // Preferences - Schemas View
109
/** The preference ID for Schemas View Label */
110     public static final String JavaDoc PREFS_SCHEMAS_VIEW_LABEL = SchemasViewPreferencePage.ID + ".label.labelValue"; //$NON-NLS-1$
111

112     /** The preference value for Schemas View First Name label */
113     public static final int PREFS_SCHEMAS_VIEW_LABEL_FIRST_NAME = 0;
114
115     /** The preference value for Schemas View All Aliases label */
116     public static final int PREFS_SCHEMAS_VIEW_LABEL_ALL_ALIASES = 1;
117
118     /** The preference value for Schemas View OID label */
119     public static final int PREFS_SCHEMAS_VIEW_LABEL_OID = 2;
120
121     /** The preference ID for Schemas View Abbreviate */
122     public static final String JavaDoc PREFS_SCHEMAS_VIEW_ABBREVIATE = SchemasViewPreferencePage.ID + ".label.abbreviate"; //$NON-NLS-1$
123

124     /** The preference ID for Schemas View Abbreviate Max Length*/
125     public static final String JavaDoc PREFS_SCHEMAS_VIEW_ABBREVIATE_MAX_LENGTH = SchemasViewPreferencePage.ID
126         + ".label.abbreviate.maxLength"; //$NON-NLS-1$
127

128     /** The preference ID for Schemas View Grouping */
129     public static final String JavaDoc PREFS_SCHEMAS_VIEW_GROUPING = Activator.PLUGIN_ID + ".preferences.SchemasView.grouping"; //$NON-NLS-1$
130

131     /** The preference value for Schemas View Grouping 'group ATs and OCs in folders' */
132     public static final int PREFS_SCHEMAS_VIEW_GROUPING_FOLDERS = 0;
133
134     /** The preference value for Schemas View Grouping 'mixed' */
135     public static final int PREFS_SCHEMAS_VIEW_GROUPING_MIXED = 1;
136
137     /** The preference ID for Schemas View Sorting By */
138     public static final String JavaDoc PREFS_SCHEMAS_VIEW_SORTING_BY = Activator.PLUGIN_ID
139         + ".preferences.SchemasView.sortingBy"; //$NON-NLS-1$
140

141     /** The preference value for Schemas View Sorting 'First Name' */
142     public static final int PREFS_SCHEMAS_VIEW_SORTING_BY_FIRSTNAME = 0;
143
144     /** The prefence value for Schemas View Sorting 'OID' */
145     public static final int PREFS_SCHEMAS_VIEW_SORTING_BY_OID = 1;
146
147     /** The preference ID for Sorting Order */
148     public static final String JavaDoc PREFS_SCHEMAS_VIEW_SORTING_ORDER = Activator.PLUGIN_ID
149         + ".preferences.SchemasView.sortingOrder"; //$NON-NLS-1$
150

151     /** The preference value for Schemas View Sorting 'ascending' */
152     public static final int PREFS_SCHEMAS_VIEW_SORTING_ORDER_ASCENDING = 0;
153
154     /** The prefence value for Schemas View Sorting 'descending' */
155     public static final int PREFS_SCHEMAS_VIEW_SORTING_ORDER_DESCENDING = 1;
156
157     // Preferences - Search View
158
/** The preference ID for Search History of the Search View */
159     public static final String JavaDoc PREFS_SEARCH_VIEW_SEARCH_HISTORY = Activator.PLUGIN_ID
160         + ".preferences.SearchView.searchHistory"; //$NON-NLS-1$
161

162     // Preferences - Hierarchy View
163
/** The preference ID for Mode of the Hierarchy View */
164     public static final String JavaDoc PREFS_HIERARCHY_VIEW_MODE = Activator.PLUGIN_ID + ".preferences.HierarchyView.mode"; //$NON-NLS-1$
165

166     /** The preference value for Hierarchy View Mode 'Supertype' */
167     public static final int PREFS_HIERARCHY_VIEW_MODE_SUPERTYPE = 0;
168
169     /** The preference value for Hierarchy View Mode 'Subtype' */
170     public static final int PREFS_HIERARCHY_VIEW_MODE_SUBTYPE = 1;
171
172     /** The preference ID for Hierarchy View Label */
173     public static final String JavaDoc PREFS_HIERARCHY_VIEW_LABEL = HierarchyViewPreferencePage.ID + ".label.labelValue"; //$NON-NLS-1$
174

175     /** The preference value for Hierarchy View First Name label */
176     public static final int PREFS_HIERARCHY_VIEW_LABEL_FIRST_NAME = 0;
177
178     /** The preference value for Hierarchy View All Aliases label */
179     public static final int PREFS_HIERARCHY_VIEW_LABEL_ALL_ALIASES = 1;
180
181     /** The preference value for Hierarchy View OID label */
182     public static final int PREFS_HIERARCHY_VIEW_LABEL_OID = 2;
183
184     /** The preference ID for Hierarchy View Abbreviate */
185     public static final String JavaDoc PREFS_HIERARCHY_VIEW_ABBREVIATE = HierarchyViewPreferencePage.ID + ".label.abbreviate"; //$NON-NLS-1$
186

187     /** The preference ID for Hierarchy View Abbreviate Max Length*/
188     public static final String JavaDoc PREFS_HIERARCHY_VIEW_ABBREVIATE_MAX_LENGTH = HierarchyViewPreferencePage.ID
189         + ".label.abbreviate.maxLength"; //$NON-NLS-1$
190

191     /** The preference ID for Hierarchy View Display Secondary Label */
192     public static final String JavaDoc PREFS_HIERARCHY_VIEW_SECONDARY_LABEL_DISPLAY = HierarchyViewPreferencePage.ID
193         + ".secondaryLabel.display"; //$NON-NLS-1$
194

195     /** The preference ID for Hierarchy View Secondary Label */
196     public static final String JavaDoc PREFS_HIERARCHY_VIEW_SECONDARY_LABEL = HierarchyViewPreferencePage.ID
197         + ".secondaryLabel.labelValue"; //$NON-NLS-1$
198

199     /** The preference ID for Hierarchy View Abbreviate Secondary Label */
200     public static final String JavaDoc PREFS_HIERARCHY_VIEW_SECONDARY_LABEL_ABBREVIATE = HierarchyViewPreferencePage.ID
201         + ".secondaryLabel.abbreviate"; //$NON-NLS-1$
202

203     /** The preference ID for Hierarchy View Abbreviate Secondary Label Max Length*/
204     public static final String JavaDoc PREFS_HIERARCHY_VIEW_SECONDARY_LABEL_ABBREVIATE_MAX_LENGTH = HierarchyViewPreferencePage.ID
205         + ".secondaryLabel.abbreviate.maxLength"; //$NON-NLS-1$
206

207     // Preferences - Schemas Editor
208
/** The preference ID for Specific Core of the Schemas Editor */
209     public static final String JavaDoc PREFS_SCHEMAS_EDITOR_SPECIFIC_CORE = Activator.PLUGIN_ID
210         + ".preferences.SchemasEditor.specificCore"; //$NON-NLS-1$
211

212     /** The preference ID for Specific Core Directory of the Schemas Editor */
213     public static final String JavaDoc PREFS_SCHEMAS_EDITOR_SPECIFIC_CORE_DIRECTORY = Activator.PLUGIN_ID
214         + ".preferences.SchemasEditor.specificCoreDirectory"; //$NON-NLS-1$
215

216     /** The preference ID for Auto OID of the Schemas Editor */
217     public static final String JavaDoc PREFS_SCHEMAS_EDITOR_AUTO_OID = Activator.PLUGIN_ID
218         + ".preferences.SchemasEditor.autoOID"; //$NON-NLS-1$
219

220     /** The preference ID for Company OID of the Schemas Editor */
221     public static final String JavaDoc PREFS_SCHEMAS_EDITOR_COMPANY_OID = Activator.PLUGIN_ID
222         + ".preferences.SchemasEditor.companyOID"; //$NON-NLS-1$
223

224     /** The preference ID for Open File Dialog path */
225     public static final String JavaDoc PREFS_OPEN_FILE_DIALOG = Activator.PLUGIN_ID + ".preferences.OpenFileDialog"; //$NON-NLS-1$
226

227     /** The preference ID for Save File Dialog path */
228     public static final String JavaDoc PREFS_SAVE_FILE_DIALOG = Activator.PLUGIN_ID + ".preferences.SaveFileDialog"; //$NON-NLS-1$
229

230
231     // Images - Actions
232
public static final String JavaDoc IMG_CREATE_A_NEW_ATTRIBUTETYPE = "ressources/icons/attribute_type_new.gif"; //$NON-NLS-1$
233
public static final String JavaDoc IMG_CREATE_A_NEW_OBJECTCLASS = "ressources/icons/object_class_new.gif"; //$NON-NLS-1$
234
public static final String JavaDoc IMG_CREATE_A_NEW_SCHEMA = "ressources/icons/schema_new.png"; //$NON-NLS-1$
235
public static final String JavaDoc IMG_DELETE = "ressources/icons/delete.gif"; //$NON-NLS-1$
236
public static final String JavaDoc IMG_ERASE_SEARCH = "ressources/icons/erase_search.gif"; //$NON-NLS-1$
237
public static final String JavaDoc IMG_EXPORT_SCHEMA_FOR_ADS = "ressources/icons/export_schema_for_ads.png"; //$NON-NLS-1$
238
public static final String JavaDoc IMG_HIDE_OBJECT_CLASSES = "ressources/icons/hide_object_classes.png"; //$NON-NLS-1$
239
public static final String JavaDoc IMG_HIDE_ATTRIBUTE_TYPES = "ressources/icons/hide_attribute_types.png"; //$NON-NLS-1$
240
public static final String JavaDoc IMG_LINK_WITH_EDITOR = "ressources/icons/link_with_editor.gif"; //$NON-NLS-1$
241
public static final String JavaDoc IMG_COLLAPSE_ALL = "ressources/icons/collapse_all.gif"; //$NON-NLS-1$
242
public static final String JavaDoc IMG_OPEN = "ressources/icons/open.png"; //$NON-NLS-1$
243
public static final String JavaDoc IMG_REMOVE_SCHEMA = "ressources/icons/schema_remove.png"; //$NON-NLS-1$
244
public static final String JavaDoc IMG_SAVE = "ressources/icons/save.gif"; //$NON-NLS-1$
245
public static final String JavaDoc IMG_SAVE_AS = "ressources/icons/save_as.png"; //$NON-NLS-1$
246
public static final String JavaDoc IMG_SAVE_ALL = "ressources/icons/save_all.png"; //$NON-NLS-1$
247
public static final String JavaDoc IMG_SHOW_PREFERENCES = "ressources/icons/preferences.png"; //$NON-NLS-1$
248
public static final String JavaDoc IMG_SHOW_SUBTYPE_HIERARCHY = "ressources/icons/hierarchy_subtype.png"; //$NON-NLS-1$
249
public static final String JavaDoc IMG_SHOW_SUPERTYPE_HIERARCHY = "ressources/icons/hierarchy_supertype.png"; //$NON-NLS-1$
250
public static final String JavaDoc IMG_SORT = "ressources/icons/sort.gif"; //$NON-NLS-1$
251

252     // Images - Views
253
public static final String JavaDoc IMG_ATTRIBUTE_TYPE = "ressources/icons/attribute_type.gif"; //$NON-NLS-1$
254
public static final String JavaDoc IMG_ATTRIBUTE_TYPE_OVERLAY_OPERATION = "ressources/icons/attribute_type_overlay_operation.gif"; //$NON-NLS-1$
255
public static final String JavaDoc IMG_ATTRIBUTE_TYPE_OVERLAY_USER_APPLICATION = "ressources/icons/attribute_type_overlay_userApplication.gif"; //$NON-NLS-1$
256
public static final String JavaDoc IMG_FOLDER_ATTRIBUTE_TYPE = "ressources/icons/folder_at.gif"; //$NON-NLS-1$
257
public static final String JavaDoc IMG_FOLDER_OBJECT_CLASS = "ressources/icons/folder_oc.gif"; //$NON-NLS-1$
258
public static final String JavaDoc IMG_OBJECT_CLASS = "ressources/icons/object_class.gif"; //$NON-NLS-1$
259
public static final String JavaDoc IMG_OBJECT_CLASS_OVERLAY_ABSTRACT = "ressources/icons/object_class_overlay_abstract.gif"; //$NON-NLS-1$
260
public static final String JavaDoc IMG_OBJECT_CLASS_OVERLAY_AUXILIARY = "ressources/icons/object_class_overlay_auxiliary.gif"; //$NON-NLS-1$
261
public static final String JavaDoc IMG_OBJECT_CLASS_OVERLAY_STRUCTURAL = "ressources/icons/object_class_overlay_structural.gif"; //$NON-NLS-1$
262
public static final String JavaDoc IMG_OBJECT_CLASS_WARNING = "ressources/icons/object_class_warning.gif"; //$NON-NLS-1$
263
public static final String JavaDoc IMG_SCHEMA = "ressources/icons/schema.gif"; //$NON-NLS-1$
264
public static final String JavaDoc IMG_SCHEMA_CORE = "ressources/icons/schema_core.gif"; //$NON-NLS-1$
265
public static final String JavaDoc IMG_WARNING_OVERLAY = "ressources/icons/warning_overlay.gif"; //$NON-NLS-1$
266

267     // Images - Wizards
268
public static final String JavaDoc IMG_ATTRIBUTE_TYPE_NEW_WIZARD = "ressources/icons/attribute_type_new_wizard.png"; //$NON-NLS-1$
269
public static final String JavaDoc IMG_OBJECT_CLASS_NEW_WIZARD = "ressources/icons/object_class_new_wizard.png"; //$NON-NLS-1$
270
public static final String JavaDoc IMG_SCHEMA_NEW_WIZARD = "ressources/icons/schema_new_wizard.png"; //$NON-NLS-1$
271

272     // Action IDs
273
public static final String JavaDoc CMD_COLLAPSE_ALL = Activator.PLUGIN_ID + ".cmd.CollapseAll"; //$NON-NLS-1$
274
public static final String JavaDoc CMD_CREATE_A_NEW_ATTRIBUTETYPE = Activator.PLUGIN_ID + ".cmd.CreateANewAttributeAype"; //$NON-NLS-1$
275
public static final String JavaDoc CMD_CREATE_A_NEW_OBJECTCLASS = Activator.PLUGIN_ID + ".cmd.CreateANewObjectClass"; //$NON-NLS-1$
276
public static final String JavaDoc CMD_CREATE_A_NEW_SCHEMA = Activator.PLUGIN_ID + ".cmd.CreateANewSchema"; //$NON-NLS-1$
277
public static final String JavaDoc CMD_DELETE = Activator.PLUGIN_ID + ".cmd.Delete"; //$NON-NLS-1$
278
public static final String JavaDoc CMD_ERASE_SEARCH = Activator.PLUGIN_ID + ".cmd.EraseSearch"; //$NON-NLS-1$
279
public static final String JavaDoc CMD_EXPORT_FOR_ADS = Activator.PLUGIN_ID + ".cmd.ExportForADS"; //$NON-NLS-1$
280
public static final String JavaDoc CMD_HIDE_ATTRIBUTE_TYPES = Activator.PLUGIN_ID + ".cmd.HideAttributesTypes"; //$NON-NLS-1$
281
public static final String JavaDoc CMD_HIDE_OBJECT_CLASSES = Activator.PLUGIN_ID + ".cmd.HideObjectClasses"; //$NON-NLS-1$
282
public static final String JavaDoc CMD_LINK_WITH_EDITOR_SCHEMA_ELEMENTS_VIEW = Activator.PLUGIN_ID
283         + ".cmd.LinkWithEditorSchemaElementsView"; //$NON-NLS-1$
284
public static final String JavaDoc CMD_LINK_WITH_EDITOR_SCHEMA_VIEW = Activator.PLUGIN_ID
285         + ".cmd.LinkWithEditorSchemasView"; //$NON-NLS-1$
286
public static final String JavaDoc CMD_OPEN_LOCAL = Activator.PLUGIN_ID + ".cmd.OpenLocal"; //$NON-NLS-1$
287
public static final String JavaDoc CMD_SCHEMA_ELEMENTS_VIEW_PREFERENCES = Activator.PLUGIN_ID
288         + ".cmd.OpenSchemaElementsViewPreferences"; //$NON-NLS-1$
289
public static final String JavaDoc CMD_SCHEMA_ELEMENTS_VIEW_SORT_DIALOG = Activator.PLUGIN_ID
290         + ".cmd.OpenSchemaElementsViewSortDialog"; //$NON-NLS-1$
291
public static final String JavaDoc CMD_OPEN_SCHEMA_SOURCE_CODE = Activator.PLUGIN_ID + ".cmd.OpenSchemaSourceSode"; //$NON-NLS-1$
292
public static final String JavaDoc CMD_SCHEMAS_VIEW_PREFERENCES = Activator.PLUGIN_ID + ".cmd.OpenSchemasViewPreferences"; //$NON-NLS-1$
293
public static final String JavaDoc CMD_SCHEMAS_VIEW_SORT_DIALOG = Activator.PLUGIN_ID + ".cmd.OpenSchemasViewSortDialog"; //$NON-NLS-1$
294
public static final String JavaDoc CMD_REMOVE_SCHEMA = Activator.PLUGIN_ID + ".cmd.RemoveSchema"; //$NON-NLS-1$
295
public static final String JavaDoc CMD_SAVE = Activator.PLUGIN_ID + ".cmd.Save"; //$NON-NLS-1$
296
public static final String JavaDoc CMD_SAVE_AS = Activator.PLUGIN_ID + ".cmd.SaveAs"; //$NON-NLS-1$
297
public static final String JavaDoc CMD_SAVE_ALL = Activator.PLUGIN_ID + ".cmd.SaveAll"; //$NON-NLS-1$
298
public static final String JavaDoc CMD_SHOW_SUBTYPE_HIERARCHY = Activator.PLUGIN_ID + ".cmd.ShowSubtypeHierarchy"; //$NON-NLS-1$
299
public static final String JavaDoc CMD_SHOW_SUPERTYPE_HIERARCHY = Activator.PLUGIN_ID + ".cmd.ShowSupertypeHierarchy"; //$NON-NLS-1$
300
public static final String JavaDoc CMD_OPEN_TYPE_HIERARCHY = Activator.PLUGIN_ID + ".cmd.OpenTypeHierarchy"; //$NON-NLS-1$
301
public static final String JavaDoc CMD_HIERARCHY_VIEW_PREFERENCES = Activator.PLUGIN_ID
302         + ".cmd.OpenHierarchyViewPreferences"; //$NON-NLS-1$
303
}
304
Popular Tags