Class AbstractTreeTableAction

  • All Implemented Interfaces:
    TreeTableAction, java.awt.event.ActionListener, java.io.Serializable, java.lang.Cloneable, java.util.EventListener, javax.swing.Action

    public abstract class AbstractTreeTableAction
    extends javax.swing.AbstractAction
    implements TreeTableAction
    Default implementation of tree table action.
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class javax.swing.AbstractAction

        changeSupport, enabled
      • 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 Abstract Methods 
      Modifier and Type Method Description
      abstract void actionPerformed​(java.awt.event.ActionEvent e)
      Invoked when an action occurs.
      abstract boolean isSelected()
      Determine if the checkbox should be selected.
      • Methods inherited from class javax.swing.AbstractAction

        addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
      • Methods inherited from class java.lang.Object

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

        accept, addPropertyChangeListener, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
    • Constructor Detail

      • AbstractTreeTableAction

        public AbstractTreeTableAction()
        Create a new AbstractTreeTableAction.
      • AbstractTreeTableAction

        public AbstractTreeTableAction​(java.lang.String name)
        Create a new AbstractTreeTableAction.
      • AbstractTreeTableAction

        public AbstractTreeTableAction​(java.lang.String name,
                                       javax.swing.Icon icon)
        Create a new AbstractTreeTableAction.
    • Method Detail

      • isSelected

        public abstract boolean isSelected()
        Description copied from interface: TreeTableAction
        Determine if the checkbox should be selected.
        Specified by:
        isSelected in interface TreeTableAction
        Returns:
        true if the checkbox should be selected.
      • actionPerformed

        public abstract void actionPerformed​(java.awt.event.ActionEvent e)
        Invoked when an action occurs.
        Specified by:
        actionPerformed in interface java.awt.event.ActionListener