Package com.luciad.gui
Class TLcdRedoAction
java.lang.Object
com.luciad.gui.ALcdAction
com.luciad.gui.TLcdRedoAction
- All Implemented Interfaces:
ILcdAction
,ILcdPropertyChangeSource
,ActionListener
,Serializable
,EventListener
This ILcdAction
allows to call redo
on the TLcdUndoManager
given at construction time. It automatically enables/disables this action when needed.
A custom name or icon can be set to this action using the ILcdAction
interface.
- See Also:
-
Field Summary
Fields inherited from class com.luciad.gui.ALcdAction
changeSupport
Fields inherited from interface com.luciad.gui.ILcdAction
DEFAULT, LONG_DESCRIPTION, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SHOW_ACTION_NAME, SMALL_ICON, VISIBLE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Asks thisTLcdRedoAction
to be performed.Methods inherited from class com.luciad.gui.ALcdAction
addPropertyChangeListener, firePropertyChange, getDisplayName, getIcon, getLongDescription, getName, getShortDescription, getValue, isEnabled, isTraceOn, putValue, registerInstance, removePropertyChangeListener, setClassTraceOn, setDisplayName, setEnabled, setIcon, setLongDescription, setName, setShortDescription, setTraceOn
-
Constructor Details
-
TLcdRedoAction
-
-
Method Details
-
actionPerformed
Asks thisTLcdRedoAction
to be performed. It will get the currentILcdUndoable
from theTLcdUndoManager
of the application, and then call itsredo()
method.
-