Package adams.gui.action
Class ToggleAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- adams.gui.action.AbstractBaseAction
-
- adams.gui.action.ToggleAction
-
- All Implemented Interfaces:
CleanUpHandler
,BaseAction
,ActionListener
,Serializable
,Cloneable
,EventListener
,Action
public class ToggleAction extends AbstractBaseAction
A specialized action class for menu items derived from JCheckBoxMenuItem.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
JCheckBoxMenuItem
, Serialized Form
-
-
Field Summary
-
Fields inherited from class adams.gui.action.AbstractBaseAction
ASYNCHRONOUS
-
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
-
-
Constructor Summary
Constructors Constructor Description ToggleAction()
Defines anAction
object with a default description string and default icon.ToggleAction(String name)
Defines anAction
object with the specified description string and a default icon.ToggleAction(String name, String icon)
Defines anAction
object with the specified description string and a the specified icon.ToggleAction(String name, Icon icon)
Defines anAction
object with the specified description string and a the specified icon.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doActionPerformed(ActionEvent e)
Dummy implementation, does nothing.-
Methods inherited from class adams.gui.action.AbstractBaseAction
actionPerformed, cleanUp, getAccelerator, getIcon, getMnemonic, getName, getToolTipText, hasAccelerator, hasIcon, hasMnemonic, hasToolTipText, initialize, isAsynchronous, isSelected, postActionPerformed, preActionPerformed, setAccelerator, setAsynchronous, setIcon, setIcon, setMnemonic, setName, setSelected, setToolTipText
-
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
-
ToggleAction
public ToggleAction()
Defines anAction
object with a default description string and default icon.
-
ToggleAction
public ToggleAction(String name)
Defines anAction
object with the specified description string and a default icon.- Parameters:
name
- the description
-
ToggleAction
public ToggleAction(String name, Icon icon)
Defines anAction
object with the specified description string and a the specified icon.- Parameters:
name
- the descriptionicon
- the icon
-
-
Method Detail
-
doActionPerformed
protected void doActionPerformed(ActionEvent e)
Dummy implementation, does nothing.- Specified by:
doActionPerformed
in classAbstractBaseAction
- Parameters:
e
- ignored
-
-