Class MultiBeanInfo.StaticValueSetUndoAction
java.lang.Object
com.inductiveautomation.factorypmi.designer.property.MultiBeanInfo.StaticValueSetUndoAction
- All Implemented Interfaces:
UndoManager.UndoAction
- Enclosing class:
- MultiBeanInfo
public static class MultiBeanInfo.StaticValueSetUndoAction
extends Object
implements UndoManager.UndoAction
-
Constructor Summary
ConstructorsConstructorDescriptionStaticValueSetUndoAction
(JComponent component, Object oldValue, Object newValue, FeatureDescriptor fd) -
Method Summary
Modifier and TypeMethodDescriptionboolean
execute()
This function executes (redoes) the actionThe description of the action will be used to determine grouping equality as well as for display purposes.boolean
This function should return true if a group of these actions can be undone by ONLY calling undo() on the first action in the group, and redone by ONLY calling execute() on the last action in the group.boolean
undo()
This function will reverse the action
-
Constructor Details
-
StaticValueSetUndoAction
public StaticValueSetUndoAction(JComponent component, Object oldValue, Object newValue, FeatureDescriptor fd)
-
-
Method Details
-
getDescription
Description copied from interface:UndoManager.UndoAction
The description of the action will be used to determine grouping equality as well as for display purposes.- Specified by:
getDescription
in interfaceUndoManager.UndoAction
-
undo
public boolean undo()Description copied from interface:UndoManager.UndoAction
This function will reverse the action- Specified by:
undo
in interfaceUndoManager.UndoAction
- Returns:
- false if the undo failed
-
execute
public boolean execute()Description copied from interface:UndoManager.UndoAction
This function executes (redoes) the action- Specified by:
execute
in interfaceUndoManager.UndoAction
- Returns:
- false if the execution failed
-
isGroupSequenceIndependent
public boolean isGroupSequenceIndependent()Description copied from interface:UndoManager.UndoAction
This function should return true if a group of these actions can be undone by ONLY calling undo() on the first action in the group, and redone by ONLY calling execute() on the last action in the group.- Specified by:
isGroupSequenceIndependent
in interfaceUndoManager.UndoAction
-