public class VActionAdapter
extends java.lang.Object
implements javax.swing.Action, java.io.Serializable
A VActionAdapter object is useful when an action listener is needed to perform a VAction. For example, this can be used to as an action listener for button clicks or menu item selections.
This class essentially adapts the VAction class hierarchy to the javax.swing.Action class hierarchy.
The following example creates an action adapter which is used to put up a properties pane for a directory in the integrated file system. The action adapter is then attached to a menu item, so that the action is performed when the menu item is selected.
// Set up the directory object. AS400 system = new AS400 ("MySystem", "Userid", "Password"); VIFSDirectory directory = new VIFSDirectory (system, "/myDirectory");
// Set up a pane and add it to a frame. AS400ExplorerPane pane = new AS400ExplorerPane (directory); JFrame frame = new JFrame ("My Window"); frame.getContentPane().add(new JScrollPane(pane));
// Set up the properties action adapter. VActionAdapter adapter = new VActionAdapter (directory, new VPropertiesAction (), pane.getActionContext ());
// Set up the menu item. JMenuItem menuItem = new JMenuItem ("Properties"); menuItem.setEnabled (true); menuItem.addActionListener (adapter);
VAction
,
Serialized FormConstructor and Description |
---|
VActionAdapter()
Deprecated.
Constructs a VActionAdapter object.
|
VActionAdapter(VAction action,
VActionContext actionContext)
Deprecated.
Constructs a VActionAdapter object.
|
Modifier and Type | Method and Description |
---|---|
void |
actionPerformed(java.awt.event.ActionEvent event)
Deprecated.
Invoked when an action is performed.
|
void |
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Deprecated.
Adds a listener to be notified when the value of any
bound property changes.
|
VAction |
getAction()
Deprecated.
Returns the action with which the action adapter
is associated.
|
VActionContext |
getActionContext()
Deprecated.
Returns the context in which the associated action will be
performed.
|
java.lang.Object |
getValue(java.lang.String key)
Deprecated.
Returns the value of the property associated with the given key.
|
boolean |
isEnabled()
Deprecated.
Indicates if the action is enabled.
|
void |
putValue(java.lang.String key,
java.lang.Object value)
Deprecated.
Sets the value of the property associated with the given key.
|
void |
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Deprecated.
Removes a property change listener.
|
void |
setAction(VAction action)
Deprecated.
Sets the action with which the action adapter
is associated.
|
void |
setActionContext(VActionContext actionContext)
Deprecated.
Sets the context in which the associated action will be
performed.
|
void |
setEnabled(boolean enabled)
Deprecated.
Sets the enabled state of the action.
|
public VActionAdapter()
public VActionAdapter(VAction action, VActionContext actionContext)
action
- The action.actionContext
- The action context.public void actionPerformed(java.awt.event.ActionEvent event)
actionPerformed
in interface java.awt.event.ActionListener
event
- The event.public void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
addPropertyChangeListener
in interface javax.swing.Action
listener
- The listener.public VAction getAction()
public VActionContext getActionContext()
public java.lang.Object getValue(java.lang.String key)
getValue
in interface javax.swing.Action
key
- The key.public boolean isEnabled()
isEnabled
in interface javax.swing.Action
public void putValue(java.lang.String key, java.lang.Object value)
putValue
in interface javax.swing.Action
key
- The key.value
- The value of the property.public void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
removePropertyChangeListener
in interface javax.swing.Action
listener
- The listener.public void setAction(VAction action)
action
- The action.public void setActionContext(VActionContext actionContext)
actionContext
- The action context.public void setEnabled(boolean enabled)
setEnabled
in interface javax.swing.Action
enabled
- true if the action is enabled; false otherwise.