com.ibm.as400.vaccess

Class VActionAdapter

  • All Implemented Interfaces:
    ActionListener, Serializable, EventListener, Action

    Deprecated. 
    Use Java Swing instead, along with the classes in package com.ibm.as400.access

    public class VActionAdapter
    extends Object
    implements Action, Serializable
    The VActionAdapter class represents an object that listens for action events and subsequently performs a VAction.

    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);
    See Also:
    VAction, Serialized Form
    • Constructor Detail

      • VActionAdapter

        public VActionAdapter()
        Deprecated. 
        Constructs a VActionAdapter object.
      • VActionAdapter

        public VActionAdapter(VAction action,
                      VActionContext actionContext)
        Deprecated. 
        Constructs a VActionAdapter object.
        Parameters:
        action - The action.
        actionContext - The action context.
    • Method Detail

      • actionPerformed

        public void actionPerformed(ActionEvent event)
        Deprecated. 
        Invoked when an action is performed. This will cause the specified event to also be performed.
        Specified by:
        actionPerformed in interface ActionListener
        Parameters:
        event - The event.
      • addPropertyChangeListener

        public void addPropertyChangeListener(PropertyChangeListener listener)
        Deprecated. 
        Adds a listener to be notified when the value of any bound property changes.
        Specified by:
        addPropertyChangeListener in interface Action
        Parameters:
        listener - The listener.
      • getAction

        public VAction getAction()
        Deprecated. 
        Returns the action with which the action adapter is associated.
        Returns:
        The action, or null if none has been set.
      • getActionContext

        public VActionContext getActionContext()
        Deprecated. 
        Returns the context in which the associated action will be performed.
        Returns:
        The action context, or null if none has been set.
      • getValue

        public Object getValue(String key)
        Deprecated. 
        Returns the value of the property associated with the given key.
        Specified by:
        getValue in interface Action
        Parameters:
        key - The key.
        Returns:
        The value.
      • isEnabled

        public boolean isEnabled()
        Deprecated. 
        Indicates if the action is enabled.
        Specified by:
        isEnabled in interface Action
        Returns:
        true if the action is enabled; false otherwise.
      • putValue

        public void putValue(String key,
                    Object value)
        Deprecated. 
        Sets the value of the property associated with the given key.
        Specified by:
        putValue in interface Action
        Parameters:
        key - The key.
        value - The value of the property.
      • setAction

        public void setAction(VAction action)
        Deprecated. 
        Sets the action with which the action adapter is associated.
        Parameters:
        action - The action.
      • setActionContext

        public void setActionContext(VActionContext actionContext)
        Deprecated. 
        Sets the context in which the associated action will be performed.
        Parameters:
        actionContext - The action context.
      • setEnabled

        public void setEnabled(boolean enabled)
        Deprecated. 
        Sets the enabled state of the action.
        Specified by:
        setEnabled in interface Action
        Parameters:
        enabled - true if the action is enabled; false otherwise.