org.eclipse.jface.action

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » jface » org.eclipse.jface.action 
org.eclipse.jface.action
Package-level Javadoc Provides support for shared UI resources such as menus, tool bars, and status lines.

Package Specification

Contribution managers coordinate contributions to shared UI resources such as menus, menu bars, tool bars, and status lines. ContributionManager maintains the contributions as a dynamic list of contribution items (IContributionItems). Separators (Separator) can be included in contribution lists to break up the list's visual representation. Internally, contribution lists can be organized into named groups via special group markers (GroupMarker) to facilitate programatic insertion at specific positions within the list.

Three specific contribution managers are provided: a status line manager (StatusLineManager), a tool bar manager (ToolBarManager), and a hierarchical menu manager (MenuManager).

Actions (IAction) are commands which can be triggered from the UI, like the ones found in menus, toolbars, and buttons. Menus and tools bars are typically populated with contribution items that delegate to actions (ActionContributionItem).

Note: None of the classes in this package maintain global state.
 

Java Source File NameTypeComment
AbstractAction.javaClass

Some common functionality to share between implementations of IAction.

AbstractGroupMarker.javaClass Abstract superclass for group marker classes.
Action.javaClass The standard abstract implementation of an action.
ActionContributionItem.javaClass A contribution item which delegates to an action.
ContributionItem.javaClass An abstract base implementation for contribution items.
ContributionManager.javaClass Abstract base class for all contribution managers, and standard implementation of IContributionManager.
ControlContribution.javaClass An abstract contribution item implementation for adding an arbitrary SWT control to a tool bar.
CoolBarManager.javaClass A cool bar manager is a contribution manager which realizes itself and its items in a cool bar control.
ExternalActionManager.javaClass

A manager for a callback facility which is capable of querying external interfaces for additional information about actions and action contribution items.

GroupMarker.javaClass A group marker is a special kind of contribution item denoting the beginning of a group.
IAction.javaInterface An action represents the non-UI side of a command which can be triggered by the end user.
IContributionItem.javaInterface A contribution item represents a contribution to a shared UI resource such as a menu or tool bar.
IContributionManager.javaInterface A contribution manager organizes contributions to such UI components as menus, toolbars and status lines.

A contribution manager keeps track of a list of contribution items.

IContributionManagerOverrides.javaInterface This interface is used by instances of IContributionItem to determine if the values for certain properties have been overriden by their manager.
ICoolBarManager.javaInterface The ICoolBarManager interface provides protocol for managing contributions to a cool bar.
IMenuCreator.javaInterface Interface for something that creates and disposes of SWT menus.
IMenuListener.javaInterface A menu listener that gets informed when a menu is about to show.
IMenuListener2.javaInterface A menu listener that gets informed when a menu is about to hide.
IMenuManager.javaInterface The IMenuManager interface provides protocol for managing contributions to a menu bar and its sub menus.
IStatusLineManager.javaInterface The IStatusLineManager interface provides protocol for displaying messages on a status line, for monitoring progress, and for managing contributions to the status line.
IToolBarManager.javaInterface The IToolBarManager interface provides protocol for managing contributions to a tool bar.
LegacyActionTools.javaClass

Some static utility methods for handling labels on actions.

MenuManager.javaClass A menu manager is a contribution manager which realizes itself and its items in a menu control; either as a menu bar, a sub-menu, or a context menu.
Separator.javaClass A separator is a special kind of contribution item which acts as a visual separator and, optionally, acts as a group marker.
StatusLine.javaClass A StatusLine control is a SWT Composite with a horizontal layout which hosts a number of status indication controls.
StatusLineLayoutData.javaClass Represents the layout data object for Control within the status line. To set a StatusLineLayoutData object into a Control, use the setLayoutData() method.
StatusLineManager.javaClass A status line manager is a contribution manager which realizes itself and its items in a status line control.
SubContributionItem.javaClass A SubContributionItem is a wrapper for an IContributionItem.
SubContributionManager.javaClass A SubContributionManager is used to define a set of contribution items within a parent manager.
SubCoolBarManager.javaClass A SubCoolBarManager monitors the additional and removal of items from a parent manager so that visibility of the entire set can be changed as a unit.
SubMenuManager.javaClass A SubMenuManager is used to define a set of contribution items within a parent manager.
SubStatusLineManager.javaClass A SubStatusLineManager is used to define a set of contribution items within a parent manager.
SubToolBarManager.javaClass A SubToolBarManager monitors the additional and removal of items from a parent manager so that visibility of the entire set can be changed as a unit.
ToolBarContributionItem.javaClass The ToolBarContributionItem class provides a wrapper for tool bar managers when used in cool bar managers.
ToolBarManager.javaClass A tool bar manager is a contribution manager which realizes itself and its items in a tool bar control.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.