KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > ui > actions > JdtActionConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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.jdt.ui.actions;
12
13 import org.eclipse.ui.texteditor.ITextEditorActionConstants;
14
15 /**
16  * Action ids for standard actions, for groups in the menu bar, and
17  * for actions in context menus of JDT views.
18  *
19  * <p>
20  * This class may be instantiated; it is not intended to be subclassed.
21  * </p>
22  *
23  * @since 2.0
24  */

25 public class JdtActionConstants {
26
27     // Navigate menu
28

29     /**
30      * Navigate menu: name of standard Goto Type global action
31      * (value <code>"org.eclipse.jdt.ui.actions.GoToType"</code>).
32      */

33     public static final String JavaDoc GOTO_TYPE= "org.eclipse.jdt.ui.actions.GoToType"; //$NON-NLS-1$
34

35     /**
36      * Navigate menu: name of standard Goto Package global action
37      * (value <code>"org.eclipse.jdt.ui.actions.GoToPackage"</code>).
38      */

39     public static final String JavaDoc GOTO_PACKAGE= "org.eclipse.jdt.ui.actions.GoToPackage"; //$NON-NLS-1$
40

41     /**
42      * Navigate menu: name of standard Open global action
43      * (value <code>"org.eclipse.jdt.ui.actions.Open"</code>).
44      */

45     public static final String JavaDoc OPEN= "org.eclipse.jdt.ui.actions.Open"; //$NON-NLS-1$
46

47     /**
48      * Navigate menu: name of standard Open Super Implementation global action
49      * (value <code>"org.eclipse.jdt.ui.actions.OpenSuperImplementation"</code>).
50      */

51     public static final String JavaDoc OPEN_SUPER_IMPLEMENTATION= "org.eclipse.jdt.ui.actions.OpenSuperImplementation"; //$NON-NLS-1$
52

53     /**
54      * Navigate menu: name of standard Open Type Hierarchy global action
55      * (value <code>"org.eclipse.jdt.ui.actions.OpenTypeHierarchy"</code>).
56      */

57     public static final String JavaDoc OPEN_TYPE_HIERARCHY= "org.eclipse.jdt.ui.actions.OpenTypeHierarchy"; //$NON-NLS-1$
58

59     /**
60      * Navigate menu: name of standard Open Call Hierarchy global action
61      * (value <code>"org.eclipse.jdt.ui.actions.OpenCallHierarchy"</code>).
62      * @since 3.0
63      */

64     public static final String JavaDoc OPEN_CALL_HIERARCHY= "org.eclipse.jdt.ui.actions.OpenCallHierarchy"; //$NON-NLS-1$
65

66     /**
67      * Navigate menu: name of standard Open External Javadoc global action
68      * (value <code>"org.eclipse.jdt.ui.actions.OpenExternalJavaDoc"</code>).
69      */

70     public static final String JavaDoc OPEN_EXTERNAL_JAVA_DOC= "org.eclipse.jdt.ui.actions.OpenExternalJavaDoc"; //$NON-NLS-1$
71

72     /**
73      * Navigate menu: name of standard Show in Packages View global action
74      * (value <code>"org.eclipse.jdt.ui.actions.ShowInPackagesView"</code>).
75      */

76     public static final String JavaDoc SHOW_IN_PACKAGE_VIEW= "org.eclipse.jdt.ui.actions.ShowInPackagesView"; //$NON-NLS-1$
77

78     /**
79      * Navigate menu: name of standard Show in Navigator View global action
80      * (value <code>"org.eclipse.jdt.ui.actions.ShowInNaviagtorView"</code>).
81      */

82     public static final String JavaDoc SHOW_IN_NAVIGATOR_VIEW= "org.eclipse.jdt.ui.actions.ShowInNaviagtorView"; //$NON-NLS-1$
83

84     // Edit menu
85

86     /**
87      * Edit menu: name of standard Show Javadoc global action
88      * (value <code>"org.eclipse.jdt.ui.actions.ShowJavaDoc"</code>).
89      * @deprecated As of 3.3, replaced by {@link ITextEditorActionConstants#SHOW_INFORMATION}
90      */

91     public static final String JavaDoc SHOW_JAVA_DOC= "org.eclipse.jdt.ui.actions.ShowJavaDoc"; //$NON-NLS-1$
92

93     /**
94      * Edit menu: name of standard Code Assist global action
95      * (value <code>"org.eclipse.jdt.ui.actions.ContentAssist"</code>).
96      */

97     public static final String JavaDoc CONTENT_ASSIST= "org.eclipse.jdt.ui.actions.ContentAssist"; //$NON-NLS-1$
98

99     // Source menu
100

101     /**
102      * Source menu: name of standard Comment global action
103      * (value <code>"org.eclipse.jdt.ui.actions.Comment"</code>).
104      */

105     public static final String JavaDoc COMMENT= "org.eclipse.jdt.ui.actions.Comment"; //$NON-NLS-1$
106

107     /**
108      * Source menu: name of standard Uncomment global action
109      * (value <code>"org.eclipse.jdt.ui.actions.Uncomment"</code>).
110      */

111     public static final String JavaDoc UNCOMMENT= "org.eclipse.jdt.ui.actions.Uncomment"; //$NON-NLS-1$
112

113     /**
114      * Source menu: name of standard ToggleComment global action
115      * (value <code>"org.eclipse.jdt.ui.actions.ToggleComment"</code>).
116      * @since 3.0
117      */

118     public static final String JavaDoc TOGGLE_COMMENT= "org.eclipse.jdt.ui.actions.ToggleComment"; //$NON-NLS-1$
119

120     /**
121      * Source menu: name of standard Block Comment global action
122      * (value <code>"org.eclipse.jdt.ui.actions.AddBlockComment"</code>).
123      *
124      * @since 3.0
125      */

126     public static final String JavaDoc ADD_BLOCK_COMMENT= "org.eclipse.jdt.ui.actions.AddBlockComment"; //$NON-NLS-1$
127

128     /**
129      * Source menu: name of standard Block Uncomment global action
130      * (value <code>"org.eclipse.jdt.ui.actions.RemoveBlockComment"</code>).
131      *
132      * @since 3.0
133      */

134     public static final String JavaDoc REMOVE_BLOCK_COMMENT= "org.eclipse.jdt.ui.actions.RemoveBlockComment"; //$NON-NLS-1$
135

136     /**
137      * Source menu: name of standard Indent global action
138      * (value <code>"org.eclipse.jdt.ui.actions.Indent"</code>).
139      *
140      * @since 3.0
141      */

142     public static final String JavaDoc INDENT= "org.eclipse.jdt.ui.actions.Indent"; //$NON-NLS-1$
143

144     /**
145      * Source menu: name of standard Shift Right action
146      * (value <code>"org.eclipse.jdt.ui.actions.ShiftRight"</code>).
147      */

148     public static final String JavaDoc SHIFT_RIGHT= "org.eclipse.jdt.ui.actions.ShiftRight"; //$NON-NLS-1$
149

150     /**
151      * Source menu: name of standard Shift Left global action
152      * (value <code>"org.eclipse.jdt.ui.actions.ShiftLeft"</code>).
153      */

154     public static final String JavaDoc SHIFT_LEFT= "org.eclipse.jdt.ui.actions.ShiftLeft"; //$NON-NLS-1$
155

156     /**
157      * Source menu: name of standard Format global action
158      * (value <code>"org.eclipse.jdt.ui.actions.Format"</code>).
159      */

160     public static final String JavaDoc FORMAT= "org.eclipse.jdt.ui.actions.Format"; //$NON-NLS-1$
161

162     /**
163      * Source menu: name of standard Format Element global action
164      * (value <code>"org.eclipse.jdt.ui.actions.FormatElement"</code>).
165      * @since 3.0
166      */

167     public static final String JavaDoc FORMAT_ELEMENT= "org.eclipse.jdt.ui.actions.FormatElement"; //$NON-NLS-1$
168

169     /**
170      * Source menu: name of standard Add Import global action
171      * (value <code>"org.eclipse.jdt.ui.actions.AddImport"</code>).
172      */

173     public static final String JavaDoc ADD_IMPORT= "org.eclipse.jdt.ui.actions.AddImport"; //$NON-NLS-1$
174

175     /**
176      * Source menu: name of standard Organize Imports global action
177      * (value <code>"org.eclipse.jdt.ui.actions.OrganizeImports"</code>).
178      */

179     public static final String JavaDoc ORGANIZE_IMPORTS= "org.eclipse.jdt.ui.actions.OrganizeImports"; //$NON-NLS-1$
180

181     /**
182      * Source menu: name of standard Sort Members global action (value
183      * <code>"org.eclipse.jdt.ui.actions.SortMembers"</code>).
184      * @since 2.1
185      */

186     public static final String JavaDoc SORT_MEMBERS= "org.eclipse.jdt.ui.actions.SortMembers"; //$NON-NLS-1$
187

188     /**
189      * Source menu: name of standard Surround with try/catch block global action
190      * (value <code>"org.eclipse.jdt.ui.actions.SurroundWithTryCatch"</code>).
191      */

192     public static final String JavaDoc SURROUND_WITH_TRY_CATCH= "org.eclipse.jdt.ui.actions.SurroundWithTryCatch"; //$NON-NLS-1$
193

194     /**
195      * Source menu: name of standard Override Methods global action
196      * (value <code>"org.eclipse.jdt.ui.actions.OverrideMethods"</code>).
197      */

198     public static final String JavaDoc OVERRIDE_METHODS= "org.eclipse.jdt.ui.actions.OverrideMethods"; //$NON-NLS-1$
199

200     /**
201      * Source menu: name of standard Generate Getter and Setter global action
202      * (value <code>"org.eclipse.jdt.ui.actions.GenerateGetterSetter"</code>).
203      */

204     public static final String JavaDoc GENERATE_GETTER_SETTER= "org.eclipse.jdt.ui.actions.GenerateGetterSetter"; //$NON-NLS-1$
205

206     /**
207      * Source menu: name of standard delegate methods global action (value
208      * <code>"org.eclipse.jdt.ui.actions.GenerateDelegateMethods"</code>).
209      * @since 2.1
210      */

211     public static final String JavaDoc GENERATE_DELEGATE_METHODS= "org.eclipse.jdt.ui.actions.GenerateDelegateMethods"; //$NON-NLS-1$
212

213     /**
214      * Source menu: name of standard Add Constructor From Superclass global action
215      * (value <code>"org.eclipse.jdt.ui.actions.AddConstructorFromSuperclass"</code>).
216      */

217     public static final String JavaDoc ADD_CONSTRUCTOR_FROM_SUPERCLASS= "org.eclipse.jdt.ui.actions.AddConstructorFromSuperclass"; //$NON-NLS-1$
218

219     /**
220      * Source menu: name of standard Generate Constructor using Fields global action
221      * (value <code>"org.eclipse.jdt.ui.actions.GenerateConstructorUsingFields"</code>).
222      */

223     public static final String JavaDoc GENERATE_CONSTRUCTOR_USING_FIELDS= "org.eclipse.jdt.ui.actions.GenerateConstructorUsingFields"; //$NON-NLS-1$
224

225     /**
226      * Source menu: name of standard Generate hashCode() and equals() global action
227      * (value <code>"org.eclipse.jdt.ui.actions.GenerateHashCodeEquals"</code>).
228      * @since 3.2
229      */

230     public static final String JavaDoc GENERATE_HASHCODE_EQUALS= "org.eclipse.jdt.ui.actions.GenerateHashCodeEquals"; //$NON-NLS-1$
231

232     /**
233      * Source menu: name of standard Add Javadoc Comment global action
234      * (value <code>"org.eclipse.jdt.ui.actions.AddJavaDocComment"</code>).
235      */

236     public static final String JavaDoc ADD_JAVA_DOC_COMMENT= "org.eclipse.jdt.ui.actions.AddJavaDocComment"; //$NON-NLS-1$
237

238     /**
239      * Source menu: name of standard Find Strings to Externalize global action
240      * (value <code>"org.eclipse.jdt.ui.actions.FindStringsToExternalize"</code>).
241      *
242      * @deprecated Use {@link JdtActionConstants#EXTERNALIZE_STRINGS} instead
243      */

244     public static final String JavaDoc FIND_STRINGS_TO_EXTERNALIZE= "org.eclipse.jdt.ui.actions.FindStringsToExternalize"; //$NON-NLS-1$
245

246     /**
247      * Source menu: name of standard Externalize Strings global action
248      * (value <code>"org.eclipse.jdt.ui.actions.ExternalizeStrings"</code>).
249      */

250     public static final String JavaDoc EXTERNALIZE_STRINGS= "org.eclipse.jdt.ui.actions.ExternalizeStrings"; //$NON-NLS-1$
251

252     /**
253      * Source menu: name of standard Convert Line Delimiters To Windows global action
254      * (value <code>"org.eclipse.jdt.ui.actions.ConvertLineDelimitersToWindows"</code>).
255      */

256     public static final String JavaDoc CONVERT_LINE_DELIMITERS_TO_WINDOWS= "org.eclipse.jdt.ui.actions.ConvertLineDelimitersToWindows"; //$NON-NLS-1$
257

258     /**
259      * Source menu: name of standard Convert Line Delimiters To UNIX global action
260      * (value <code>"org.eclipse.jdt.ui.actions.ConvertLineDelimitersToUNIX"</code>).
261      */

262     public static final String JavaDoc CONVERT_LINE_DELIMITERS_TO_UNIX= "org.eclipse.jdt.ui.actions.ConvertLineDelimitersToUNIX"; //$NON-NLS-1$
263

264     /**
265      * Source menu: name of standardConvert Line Delimiters To Mac global action
266      * (value <code>"org.eclipse.jdt.ui.actions.ConvertLineDelimitersToMac"</code>).
267      */

268     public static final String JavaDoc CONVERT_LINE_DELIMITERS_TO_MAC= "org.eclipse.jdt.ui.actions.ConvertLineDelimitersToMac"; //$NON-NLS-1$
269

270     /**
271      * Source menu: name of standard Clean up global action
272      * (value <code>"org.eclipse.jdt.ui.actions.CleanUp"</code>).
273      *
274      * @since 3.2
275      */

276     public static final String JavaDoc CLEAN_UP= "org.eclipse.jdt.ui.actions.CleanUp"; //$NON-NLS-1$
277

278     // Refactor menu
279

280     /**
281      * Refactor menu: name of standard Self Encapsulate Field global action
282      * (value <code>"org.eclipse.jdt.ui.actions.SelfEncapsulateField"</code>).
283      */

284     public static final String JavaDoc SELF_ENCAPSULATE_FIELD= "org.eclipse.jdt.ui.actions.SelfEncapsulateField"; //$NON-NLS-1$
285

286     /**
287      * Refactor menu: name of standard Modify Parameters global action
288      * (value <code>"org.eclipse.jdt.ui.actions.ModifyParameters"</code>).
289      */

290     public static final String JavaDoc MODIFY_PARAMETERS= "org.eclipse.jdt.ui.actions.ModifyParameters"; //$NON-NLS-1$
291

292     /**
293      * Refactor menu: name of standard Pull Up global action
294      * (value <code>"org.eclipse.jdt.ui.actions.PullUp"</code>).
295      */

296     public static final String JavaDoc PULL_UP= "org.eclipse.jdt.ui.actions.PullUp"; //$NON-NLS-1$
297

298     /**
299      * Refactor menu: name of standard Push Down global action
300      * (value <code>"org.eclipse.jdt.ui.actions.PushDown"</code>).
301      *
302      * @since 2.1
303      */

304     public static final String JavaDoc PUSH_DOWN= "org.eclipse.jdt.ui.actions.PushDown"; //$NON-NLS-1$
305

306     /**
307      * Refactor menu: name of standard Move Element global action
308      * (value <code>"org.eclipse.jdt.ui.actions.Move"</code>).
309      */

310     public static final String JavaDoc MOVE= "org.eclipse.jdt.ui.actions.Move"; //$NON-NLS-1$
311

312     /**
313      * Refactor menu: name of standard Rename Element global action
314      * (value <code>"org.eclipse.jdt.ui.actions.Rename"</code>).
315      */

316     public static final String JavaDoc RENAME= "org.eclipse.jdt.ui.actions.Rename"; //$NON-NLS-1$
317

318     /**
319      * Refactor menu: name of standard Inline Temp global action
320      * (value <code>"org.eclipse.jdt.ui.actions.InlineTemp"</code>).
321      * @deprecated Use INLINE
322      */

323     public static final String JavaDoc INLINE_TEMP= "org.eclipse.jdt.ui.actions.InlineTemp"; //$NON-NLS-1$
324

325     /**
326      * Refactor menu: name of standard Extract Temp global action
327      * (value <code>"org.eclipse.jdt.ui.actions.ExtractTemp"</code>).
328      */

329     public static final String JavaDoc EXTRACT_TEMP= "org.eclipse.jdt.ui.actions.ExtractTemp"; //$NON-NLS-1$
330

331     /**
332      * Refactor menu: name of standard Extract Constant global action
333      * (value <code>"org.eclipse.jdt.ui.actions.ExtractConstant"</code>).
334      *
335      * @since 2.1
336      */

337     public static final String JavaDoc EXTRACT_CONSTANT= "org.eclipse.jdt.ui.actions.ExtractConstant"; //$NON-NLS-1$
338

339     /**
340      * Refactor menu: name of standard Introduce Parameter global action
341      * (value <code>"org.eclipse.jdt.ui.actions.IntroduceParameter"</code>).
342      *
343      * @since 3.0
344      */

345     public static final String JavaDoc INTRODUCE_PARAMETER= "org.eclipse.jdt.ui.actions.IntroduceParameter"; //$NON-NLS-1$
346

347     /**
348      * Refactor menu: name of standard Introduce Factory global action
349      * (value <code>"org.eclipse.jdt.ui.actions.IntroduceFactory"</code>).
350      *
351      * @since 3.0
352      */

353     public static final String JavaDoc INTRODUCE_FACTORY= "org.eclipse.jdt.ui.actions.IntroduceFactory"; //$NON-NLS-1$
354

355     /**
356      * Refactor menu: name of standard Extract Method global action
357      * (value <code>"org.eclipse.jdt.ui.actions.ExtractMethod"</code>).
358      */

359     public static final String JavaDoc EXTRACT_METHOD= "org.eclipse.jdt.ui.actions.ExtractMethod"; //$NON-NLS-1$
360

361     /**
362      * Refactor menu: name of standard Replace Invocations global action
363      * (value <code>"org.eclipse.jdt.ui.actions.ReplaceInvocations"</code>).
364      *
365      * @since 3.2
366      */

367     public static final String JavaDoc REPLACE_INVOCATIONS="org.eclipse.jdt.ui.actions.ReplaceInvocations"; //$NON-NLS-1$
368

369     /**
370      * Refactor menu: name of standard Introduce Indirection global action
371      * (value <code>"org.eclipse.jdt.ui.actions.IntroduceIndirection"</code>).
372      *
373      * @since 3.2
374      */

375     public static final String JavaDoc INTRODUCE_INDIRECTION= "org.eclipse.jdt.ui.actions.IntroduceIndirection"; //$NON-NLS-1$
376

377     /**
378      * Refactor menu: name of standard Inline global action
379      * (value <code>"org.eclipse.jdt.ui.actions.Inline"</code>).
380      *
381      * @since 2.1
382      */

383     public static final String JavaDoc INLINE= "org.eclipse.jdt.ui.actions.Inline"; //$NON-NLS-1$
384

385     /**
386      * Refactor menu: name of standard Extract Interface global action
387      * (value <code>"org.eclipse.jdt.ui.actions.ExtractInterface"</code>).
388      *
389      * @since 2.1
390      */

391     public static final String JavaDoc EXTRACT_INTERFACE= "org.eclipse.jdt.ui.actions.ExtractInterface"; //$NON-NLS-1$
392

393     /**
394      * Refactor menu: name of standard Generalize Declared Type global action
395      * (value <code>"org.eclipse.jdt.ui.actions.ChangeType"</code>).
396      *
397      * @since 3.0
398      */

399     public static final String JavaDoc CHANGE_TYPE= "org.eclipse.jdt.ui.actions.ChangeType"; //$NON-NLS-1$
400

401     /**
402      * Refactor menu: name of standard global action to convert a nested type to a top level type
403      * (value <code>"org.eclipse.jdt.ui.actions.MoveInnerToTop"</code>).
404      *
405      * @since 2.1
406      */

407     public static final String JavaDoc CONVERT_NESTED_TO_TOP= "org.eclipse.jdt.ui.actions.ConvertNestedToTop"; //$NON-NLS-1$
408

409     /**
410      * Refactor menu: name of standard Use Supertype global action
411      * (value <code>"org.eclipse.jdt.ui.actions.UseSupertype"</code>).
412      *
413      * @since 2.1
414      */

415     public static final String JavaDoc USE_SUPERTYPE= "org.eclipse.jdt.ui.actions.UseSupertype"; //$NON-NLS-1$
416

417     /**
418      * Refactor menu: name of standard Infer Generic Type Arguments global action
419      * (value <code>"org.eclipse.jdt.ui.actions.InferTypeArguments"</code>).
420      *
421      * @since 3.1
422      */

423     public static final String JavaDoc INFER_TYPE_ARGUMENTS= "org.eclipse.jdt.ui.actions.InferTypeArguments"; //$NON-NLS-1$
424

425     /**
426      * Refactor menu: name of standard global action to convert a local
427      * variable to a field (value <code>"org.eclipse.jdt.ui.actions.ConvertLocalToField"</code>).
428      *
429      * @since 2.1
430      */

431     public static final String JavaDoc CONVERT_LOCAL_TO_FIELD= "org.eclipse.jdt.ui.actions.ConvertLocalToField"; //$NON-NLS-1$
432

433     /**
434      * Refactor menu: name of standard Covert Anonymous to Nested global action
435      * (value <code>"org.eclipse.jdt.ui.actions.ConvertAnonymousToNested"</code>).
436      *
437      * @since 2.1
438      */

439     public static final String JavaDoc CONVERT_ANONYMOUS_TO_NESTED= "org.eclipse.jdt.ui.actions.ConvertAnonymousToNested"; //$NON-NLS-1$
440

441     // Search Menu
442

443     /**
444      * Search menu: name of standard Find References in Workspace global action
445      * (value <code>"org.eclipse.jdt.ui.actions.ReferencesInWorkspace"</code>).
446      */

447     public static final String JavaDoc FIND_REFERENCES_IN_WORKSPACE= "org.eclipse.jdt.ui.actions.ReferencesInWorkspace"; //$NON-NLS-1$
448

449     /**
450      * Search menu: name of standard Find References in Project global action
451      * (value <code>"org.eclipse.jdt.ui.actions.ReferencesInProject"</code>).
452      */

453     public static final String JavaDoc FIND_REFERENCES_IN_PROJECT= "org.eclipse.jdt.ui.actions.ReferencesInProject"; //$NON-NLS-1$
454

455     /**
456      * Search menu: name of standard Find References in Hierarchy global action
457      * (value <code>"org.eclipse.jdt.ui.actions.ReferencesInHierarchy"</code>).
458      */

459     public static final String JavaDoc FIND_REFERENCES_IN_HIERARCHY= "org.eclipse.jdt.ui.actions.ReferencesInHierarchy"; //$NON-NLS-1$
460

461     /**
462      * Search menu: name of standard Find References in Working Set global action
463      * (value <code>"org.eclipse.jdt.ui.actions.ReferencesInWorkingSet"</code>).
464      */

465     public static final String JavaDoc FIND_REFERENCES_IN_WORKING_SET= "org.eclipse.jdt.ui.actions.ReferencesInWorkingSet"; //$NON-NLS-1$
466

467
468
469     /**
470      * Search menu: name of standard Find Declarations in Workspace global action
471      * (value <code>"org.eclipse.jdt.ui.actions.DeclarationsInWorkspace"</code>).
472      */

473     public static final String JavaDoc FIND_DECLARATIONS_IN_WORKSPACE= "org.eclipse.jdt.ui.actions.DeclarationsInWorkspace"; //$NON-NLS-1$
474

475     /**
476      * Search menu: name of standard Find Declarations in Project global action
477      * (value <code>"org.eclipse.jdt.ui.actions.DeclarationsInProject"</code>).
478      */

479     public static final String JavaDoc FIND_DECLARATIONS_IN_PROJECT= "org.eclipse.jdt.ui.actions.DeclarationsInProject"; //$NON-NLS-1$
480

481     /**
482      * Search menu: name of standard Find Declarations in Hierarchy global action
483      * (value <code>"org.eclipse.jdt.ui.actions.DeclarationsInHierarchy"</code>).
484      */

485     public static final String JavaDoc FIND_DECLARATIONS_IN_HIERARCHY= "org.eclipse.jdt.ui.actions.DeclarationsInHierarchy"; //$NON-NLS-1$
486

487     /**
488      * Search menu: name of standard Find Declarations in Working Set global action
489      * (value <code>"org.eclipse.jdt.ui.actions.DeclarationsInWorkingSet"</code>).
490      */

491     public static final String JavaDoc FIND_DECLARATIONS_IN_WORKING_SET= "org.eclipse.jdt.ui.actions.DeclarationsInWorkingSet"; //$NON-NLS-1$
492

493     /**
494      * Search menu: name of standard Find Implementors in Workspace global action
495      * (value <code>"org.eclipse.jdt.ui.actions.ImplementorsInWorkspace"</code>).
496      */

497     public static final String JavaDoc FIND_IMPLEMENTORS_IN_WORKSPACE= "org.eclipse.jdt.ui.actions.ImplementorsInWorkspace"; //$NON-NLS-1$
498

499     /**
500      * Search menu: name of standard Find Implementors in Project global action
501      * (value <code>"org.eclipse.jdt.ui.actions.ImplementorsInProject"</code>).
502      */

503     public static final String JavaDoc FIND_IMPLEMENTORS_IN_PROJECT= "org.eclipse.jdt.ui.actions.ImplementorsInProject"; //$NON-NLS-1$
504

505     /**
506      * Search menu: name of standard Find Implementors in Working Set global action
507      * (value <code>"org.eclipse.jdt.ui.actions.ImplementorsInWorkingSet"</code>).
508      */

509     public static final String JavaDoc FIND_IMPLEMENTORS_IN_WORKING_SET= "org.eclipse.jdt.ui.actions.ImplementorsInWorkingSet"; //$NON-NLS-1$
510

511     /**
512      * Search menu: name of standard Find Read Access in Workspace global action
513      * (value <code>"org.eclipse.jdt.ui.actions.ReadAccessInWorkspace"</code>).
514      */

515     public static final String JavaDoc FIND_READ_ACCESS_IN_WORKSPACE= "org.eclipse.jdt.ui.actions.ReadAccessInWorkspace"; //$NON-NLS-1$
516

517     /**
518      * Search menu: name of standard Find Read Access in Project global action
519      * (value <code>"org.eclipse.jdt.ui.actions.ReadAccessInProject"</code>).
520      */

521     public static final String JavaDoc FIND_READ_ACCESS_IN_PROJECT= "org.eclipse.jdt.ui.actions.ReadAccessInProject"; //$NON-NLS-1$
522

523     /**
524      * Search menu: name of standard Find Read Access in Hierarchy global action
525      * (value <code>"org.eclipse.jdt.ui.actions.ReadAccessInHierarchy"</code>).
526      */

527     public static final String JavaDoc FIND_READ_ACCESS_IN_HIERARCHY= "org.eclipse.jdt.ui.actions.ReadAccessInHierarchy"; //$NON-NLS-1$
528

529     /**
530      * Search menu: name of standard Find Read Access in Working Set global action
531      * (value <code>"org.eclipse.jdt.ui.actions.ReadAccessInWorkingSet"</code>).
532      */

533     public static final String JavaDoc FIND_READ_ACCESS_IN_WORKING_SET= "org.eclipse.jdt.ui.actions.ReadAccessInWorkingSet"; //$NON-NLS-1$
534

535     /**
536      * Search menu: name of standard Find Write Access in Workspace global action
537      * (value <code>"org.eclipse.jdt.ui.actions.WriteAccessInWorkspace"</code>).
538      */

539     public static final String JavaDoc FIND_WRITE_ACCESS_IN_WORKSPACE= "org.eclipse.jdt.ui.actions.WriteAccessInWorkspace"; //$NON-NLS-1$
540

541     /**
542      * Search menu: name of standard Find Write Access in Project global action
543      * (value <code>"org.eclipse.jdt.ui.actions.WriteAccessInProject"</code>).
544      */

545     public static final String JavaDoc FIND_WRITE_ACCESS_IN_PROJECT= "org.eclipse.jdt.ui.actions.WriteAccessInProject"; //$NON-NLS-1$
546

547     /**
548      * Search menu: name of standard Find Read Access in Hierarchy global action
549      * (value <code>"org.eclipse.jdt.ui.actions.WriteAccessInHierarchy"</code>).
550      */

551     public static final String JavaDoc FIND_WRITE_ACCESS_IN_HIERARCHY= "org.eclipse.jdt.ui.actions.WriteAccessInHierarchy"; //$NON-NLS-1$
552

553     /**
554      * Search menu: name of standard Find Read Access in Working Set global action
555      * (value <code>"org.eclipse.jdt.ui.actions.WriteAccessInWorkingSet"</code>).
556      */

557     public static final String JavaDoc FIND_WRITE_ACCESS_IN_WORKING_SET= "org.eclipse.jdt.ui.actions.WriteAccessInWorkingSet"; //$NON-NLS-1$
558

559     /**
560      * Search menu: name of standard Occurrences in File global action (value
561      * <code>"org.eclipse.jdt.ui.actions.OccurrencesInFile"</code>).
562      *
563      * @since 2.1
564      */

565     public static final String JavaDoc FIND_OCCURRENCES_IN_FILE= "org.eclipse.jdt.ui.actions.OccurrencesInFile"; //$NON-NLS-1$
566

567     /**
568      * Search menu: name of standard Find exception occurrences global action (value
569      * <code>"org.eclipse.jdt.ui.actions.ExceptionOccurrences"</code>).
570      *
571      * @since 3.0
572      */

573     public static final String JavaDoc FIND_EXCEPTION_OCCURRENCES= "org.eclipse.jdt.ui.actions.ExceptionOccurrences"; //$NON-NLS-1$
574

575     /**
576      * Search menu: name of standard Find implement occurrences global action (value
577      * <code>"org.eclipse.jdt.ui.actions.ImplementOccurrences"</code>).
578      *
579      * @since 3.1
580      */

581     public static final String JavaDoc FIND_IMPLEMENT_OCCURRENCES= "org.eclipse.jdt.ui.actions.ImplementOccurrences"; //$NON-NLS-1$
582

583
584 }
585
Popular Tags