Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ What is the difference between a command and an action?"

(References)
Line 19: Line 19:
  
 
==References==
 
==References==
[http://wiki.eclipse.org/Platform_Command_Framework]<br>
+
[http://wiki.eclipse.org/Platform_Command_Framework Platform Command Framework]<br>
[http://wiki.eclipse.org/Command_Core_Expressions]<br>
+
[http://wiki.eclipse.org/Command_Core_Expressions Core Expressions]<br>
[http://wiki.eclipse.org/Menu_Contributions]<br>
+
[http://wiki.eclipse.org/Menu_Contributions Menu Contributions]<br>
[http://wiki.eclipse.org/Menus_Extension_Mapping]<br>
+
[http://wiki.eclipse.org/Menus_Extension_Mapping Menu Extension Mapping]<br>
[http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/workbench.htm]<br>
+
[http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/workbench.htm Eclipse Workbench Guide]<br>
 
<br>
 
<br>
[http://blog.rcp-company.com/2007/06/working-with-menus-extension-point.html]<br>
+
[http://blog.rcp-company.com/2007/06/working-with-menus-extension-point.html Working with mnu extension point]<br>
 
<br>
 
<br>
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=223445]
+
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=223445 bug 223445 discusses references to an upcoming article]
 
+
  
 
== See Also: ==
 
== See Also: ==

Revision as of 12:18, 16 April 2008

Since you have come this far, you probably already understand that Actions and Commands basically do the same thing: They cause a certain piece of code to be executed. They are triggered, mainly, from artificats within the user interface. These artifacts can be an icon in a (tool)bar, a menu item or a certain key combination.

The action framework is proven, tightly integrated and fairly easy to program. So, why change?

Actions

The main concern with Actions is that the manifestation and the code is all stored in the Action. Although there is some separation in Action Delegates, they are still connected to the underlying action. Selection events are passed to Actions so that they can change their enabled state (programmatically) based on the current selection. This is not very elegant. Also to place an action on a certain workbench part you have to use several extension points.
org.eclipse.ui.viewActions
org.eclipse.ui.popupMenus
org.eclipse.ui.editorActions

Commands

Commands pretty much solve all these issues. The basic idea is that the Command is just the abstract idea of some code to be executed. The actual handling of the code is done by, well, handlers. Handlers are activated by a certain state of the workbench called a Context. This means that we only need one global Save command which behaves differently based on the context of the keystroke. Although this specific Command could also be retargeted by a global action, this still has to be done programmatically and not declaratively. To place a Command on a certain workbench part (including the trim area) you have to use only one extension point.
org.eclipse.ui.menus

If you look in the Workbench > Keys preference page, you will see a list of all commands known to the platform, including what context and configuration they belong to. Key bindings are hooked to commands, and then commands are hooked to handlers. This extra level of indirection allows for added flexibility in the implementation. The user can change key bindings for a command without the associated handlers knowing about it, and the handler for a command can be dynamically changed for different circumstances.

References

Platform Command Framework
Core Expressions
Menu Contributions
Menu Extension Mapping
Eclipse Workbench Guide

Working with mnu extension point

bug 223445 discusses references to an upcoming article

See Also:



This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top