Package jadex.commons.gui.jtreetable
Class AbstractTreeTableAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- jadex.commons.gui.jtreetable.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
-
-
Constructor Summary
Constructors Constructor Description AbstractTreeTableAction()
Create a new AbstractTreeTableAction.AbstractTreeTableAction(java.lang.String name)
Create a new AbstractTreeTableAction.AbstractTreeTableAction(java.lang.String name, javax.swing.Icon icon)
Create a new AbstractTreeTableAction.
-
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
-
-
-
-
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 interfaceTreeTableAction
- 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 interfacejava.awt.event.ActionListener
-
-