Actions |
Other Swing Changes |
API for Adding Actions to ActionEvent Sources
Background
Swing provides an implementation of the Command pattern which helps application developer centralize functionality which can be accessed from multiple places in the GUI. TheAction
interface is used to provide a statefulActionListener
which can provide the implementation of functionality accessed for example from the toolbar, a menu item, and a keyboard binding. As the state of theAction
changes, for instance when it becomes disabled, the associated controls change their state accordingly (they also become disabled).The Problem
ForAction
s to work as intended, the following connections need to be made (assume theAction
has already been created):Since a typical application may have between 5 and 25
- The control needs to be created
- The
Action
is added as anActionListener
on the control- A
PropertyChangeListener
is created which describes how the control should be updated in response toPropertyChangeEvents
on theAction
- The
PropertyChangeListener
is added as a listener on theAction
.- Information about the linkage may need to be retained so it can be undone to allow garbage collection (in 1.2 this can be automatically handled with WeakRefs).
Action
s, and 2-3 controls perAction
, the steps above need to be done up to 75 times!In order to relieve the developer of much of this burden, we have provided a way to have this done automatically, through helper methods on potential
Container
s ofAction
s. The three places where this is surfaced in Swing at present are:
JToolBar.java public JButton add(Action a)
JMenu.java public JMenuItem add(Action a)
JPopupMenu.java public JMenuItem add(Action a)
The problems with this approach are several:
- It is highly problematic for Builders, since it overloads
Container.add()
to allow a non-Component
parameter which is not itself the thing that ends up being added.- Developers cannot participate in the configuration of the controls created without subclassing the container classes
- Even if they do subclass, the granularity of the configuration ends up being per-
Container
instead of per-control added.- It limits developers to the expected control for each
Container
rather than allowing the full range ofActionEvent
sources whichAction
permits.Solution
Many developers have commented that they would prefer to create their own controls which areActionEvent
sources and then have a method which connects them to a particularAction
. The solution is along these lines, and addresses the deficiencies listed above.The added API is initially added to AbstractButton, which defines the abstract superclass of
JButton, JMenuItem, JMenu, JCheckBox
, etc.The new public methods are as follows: In addition, constructors have been added to the ActionEvent sources which will allow for creating a control directly with the supplied Action.
In JButton:
Equivalent constructors have been added to: Notes:
setAction
is merely a helper method which performs the linkage steps described above as a convenience to the developer.- It is not expected that developers will often switch the
Action
for a control on the fly. However, it is possible for them to do so, usingsetAction
since it replaces the previously set action and fires aPropertyChangeEvent
.- This does not replace the standard method of adding
ActionListener
s, note that it usesaddActionListener()
as stated above- The current
Container
apis listed above will be reimplemented in terms of setAction, so that they give the same behavior as they did previously. This solution will make that code much easier to maintain!- The methods
configurePropertiesFromAction
andcreateActionPropertyChangeListener
will be overridden in subclasses to provide the expected default behavior.createAction Factory Methods for JToolBar, JPopupMenu, JMenu
New factory methods allow one to control what toolbars and menus create when an action is added directly, i.e. with the add method.Addition to JToolBar:
Addition to JPopupMenu: Addition to JMenu:New Action Constants
See:Add AbstractAction getKeys Method
This new method is needed for serialization of Abstract Actions, and gives the developer a way to find out which keys have been set for the AbstractAction.See:
Copyright © 1999 Sun Microsystems, Inc. All Rights Reserved. Please send comments to: swing-feedback@java.sun.com. This is not a subscription list. |
Java Software |