Eclipse JDT
2.0

Package org.eclipse.jdt.ui.actions

Application programming interfaces for Eclipse Java User Interface specific actions.

See:
          Description

Interface Summary
IJavaEditorActionDefinitionIds Defines the definition IDs for the Java editor actions.
 

Class Summary
AddGetterSetterAction Creates getter and setter methods for a type's fields.
AddJavaDocStubAction Creates a Java Doc Stubs for the selected members.
AddUnimplementedConstructorsAction Creates unimplemented constructors for a type.
BuildActionGroup Contributes all build related actions to the context menu and installs handlers for the corresponding global menu actions.
CCPActionGroup Action group that adds the copy, cut, paste actions to a view part's context menu and installs handlers for the corresponding global menu actions.
CustomFiltersActionGroup Action group to add the filter action to a view part's toolbar menu.
DeclarationsSearchGroup Action group that adds the search for declarations actions to a context menu and the global menu bar.
ExternalizeStringsAction Externalizes the strings of a compilation unit.
ExtractMethodAction Extracts the code selected inside a compilation unit editor into a new method.
ExtractTempAction Extracts an expression into a new local variable and replaces all occurrences of the expression with the local variable.
FindAction Abstract class for Java search actions.
FindDeclarationsAction Finds declarations of the selected element in the workspace.
FindDeclarationsInHierarchyAction Finds declarations of the selected element in its hierarchy.
FindDeclarationsInWorkingSetAction Finds declarations of the selected element in working sets.
FindImplementorsAction Finds implementors of the selected element in the workspace.
FindImplementorsInWorkingSetAction Finds implementors of the selected element in working sets.
FindReadReferencesAction Finds field read accesses of the selected element in the workspace.
FindReadReferencesInHierarchyAction Finds field read accesses of the selected element in its hierarchy.
FindReadReferencesInWorkingSetAction Finds field read accesses of the selected element in working sets.
FindReferencesAction Finds references of the selected element in the workspace.
FindReferencesInHierarchyAction Finds references of the selected element in its hierarchy.
FindReferencesInWorkingSetAction Finds references of the selected element in working sets.
FindStringsToExternalizeAction Find all Strings in a package or project that are not externalized yet.
FindWriteReferencesAction Finds field write accesses of the selected element in the workspace.
FindWriteReferencesInHierarchyAction Finds field write accesses of the selected element in its hierarchy.
FindWriteReferencesInWorkingSetAction Finds field write accesses of the selected element in working sets.
GenerateActionGroup Action group that adds the source and generate actions to a part's context menu and installs handlers for the corresponding global menu actions.
ImplementorsSearchGroup Action group that adds the search for implementors actions to a context menu and the global menu bar.
ImportActionGroup Action group to add the Import and Export action to a view part's context menu.
InlineTempAction Inlines the value of a local variable at all places where a read reference is used.
JavaSearchActionGroup Action group that adds the Java search actions to a context menu and the global menu bar.
JdtActionConstants Action ids for standard actions, for groups in the menu bar, and for actions in context menus of JDT views.
MemberFilterActionGroup Action Group that contributes filter buttons for a view parts showing methods and fields.
ModifyParametersAction Action to start the modify parameters refactoring.
MoveAction This action moves Java elements to a new location.
NavigateActionGroup Action group that adds the open and show actions to a context menu and the action bar's navigate menu.
OpenAction This action opens a Java editor on a Java element or file.
OpenEditorActionGroup Action group that adds the actions opening a new editor to the context menu and the action bar's navigate menu.
OpenExternalJavadocAction This action opens the selected element's Javadoc in an external browser.
OpenJavaBrowsingPerspectiveAction Action to programmatically open a Java perspective.
OpenJavaPerspectiveAction Action to programmatically open a Java perspective.
OpenProjectAction Action to open a closed project.
OpenSuperImplementationAction The action opens a Java editor on the selected method's super implementation.
OpenTypeHierarchyAction This action opens a type hierarchy on the selected type.
OpenViewActionGroup Action group that adds actions to open a new JDT view part or an external viewer to a context menu and the global menu bar.
OrganizeImportsAction Organizes the imports of a compilation unit.
OrganizeImportsAction.ObjectDelegate  
OverrideMethodsAction Adds unimplemented methods of a type.
ProjectActionGroup Adds actions to open and close a project to the global menu bar.
PullUpAction Action to pull up method and fields into a superclass.
ReadReferencesSearchGroup Action group that adds the search for read references actions to a context menu and the global menu bar.
RefactorActionGroup Action group that adds refactor actions (e.g.
ReferencesSearchGroup Action group that adds the search for references actions to a context menu and the global menu bar.
RefreshAction Action for refreshing the workspace from the local file system for the selected resources and all of their descendents.
RenameAction Renames a Java element or workbench resource.
SelectionDispatchAction Action that dispatches the IAction#run() and the ISelectionChangedListener#selectionChanged according to the type of the selection.
SelfEncapsulateFieldAction Action to run the self encapsulate field refactoring.
ShowActionGroup Action group that adds the show actions to a context menu and the action bar's navigate menu.
ShowInNavigatorViewAction Reveals the selected element in the resource navigator view.
ShowInPackageViewAction This action reveals the currently selected Java element in the package explorer.
SurroundWithTryCatchAction Action to surround a set of statements with a try/catch block.
WorkingSetFindAction Wraps a JavaElementSearchActions to find its results in the specified working set.
WriteReferencesSearchGroup Action group that adds the search for write references actions to a context menu and the global menu bar.
 

Package org.eclipse.jdt.ui.actions Description

Application programming interfaces for Eclipse Java User Interface specific actions.

Package Specification

The package provides actions and action groups to populate tool bars, global menu bars and context menus with JDT specific functionality.

It is recommended that clients use action groups to populate menus and tool bars instead of adding actions directly.

Clients are allowed to instantiate classes from this package. The classes are not intended to be subclassed. All actions and groups require that the selection provided by the site, view part or page passed to the action's or group's constructor is of type org.eclipse.jface.viewers.IStructuredSelection .


Eclipse JDT
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.