Class ParameterizedActionDecorator

  • All Implemented Interfaces:
    java.awt.event.ActionListener, java.util.EventListener, javax.swing.Action

    public class ParameterizedActionDecorator
    extends java.lang.Object
    implements javax.swing.Action
    Action wrapper that delegates to a ParameterizedAction object using a specific set of parameters.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private ParameterizedAction action  
      private java.util.Map<java.lang.String,​java.lang.Object> parameters  
      • Fields inherited from interface javax.swing.Action

        ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void actionPerformed​(java.awt.event.ActionEvent e)  
      void addPropertyChangeListener​(java.beans.PropertyChangeListener listener)  
      java.util.Map<java.lang.String,​java.lang.Object> getParameters()
      Get the parameters used to invoke the wrapped action.
      java.lang.Object getValue​(java.lang.String key)  
      boolean isEnabled()  
      void putValue​(java.lang.String key, java.lang.Object value)  
      void removePropertyChangeListener​(java.beans.PropertyChangeListener listener)  
      void setEnabled​(boolean b)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface javax.swing.Action

        accept
    • Constructor Detail

      • ParameterizedActionDecorator

        public ParameterizedActionDecorator​(ParameterizedAction action,
                                            java.util.Map<java.lang.String,​java.lang.Object> parameters)
        Constructs a new ParameterizedActionDecorator.
        Parameters:
        action - the action that is invoked by this wrapper
        parameters - parameters used for invoking the action
    • Method Detail

      • addPropertyChangeListener

        public void addPropertyChangeListener​(java.beans.PropertyChangeListener listener)
        Specified by:
        addPropertyChangeListener in interface javax.swing.Action
      • getValue

        public java.lang.Object getValue​(java.lang.String key)
        Specified by:
        getValue in interface javax.swing.Action
      • isEnabled

        public boolean isEnabled()
        Specified by:
        isEnabled in interface javax.swing.Action
      • putValue

        public void putValue​(java.lang.String key,
                             java.lang.Object value)
        Specified by:
        putValue in interface javax.swing.Action
      • removePropertyChangeListener

        public void removePropertyChangeListener​(java.beans.PropertyChangeListener listener)
        Specified by:
        removePropertyChangeListener in interface javax.swing.Action
      • setEnabled

        public void setEnabled​(boolean b)
        Specified by:
        setEnabled in interface javax.swing.Action
      • actionPerformed

        public void actionPerformed​(java.awt.event.ActionEvent e)
        Specified by:
        actionPerformed in interface java.awt.event.ActionListener
      • getParameters

        public java.util.Map<java.lang.String,​java.lang.Object> getParameters()
        Get the parameters used to invoke the wrapped action.
        Returns:
        the parameters used to invoke the wrapped action