Class UndoPagesConfig
java.lang.Object
com.inductiveautomation.perspective.designer.workspace.undo.UndoPagesConfig
- All Implemented Interfaces:
UndoManager.UndoAction
An UndoAction to allow page configuration changes to be controlled via the UndoManger. This utilizes
the `savePagesConfig()` static method of the PagesConfigPanel class to save the config changes
back to the project.
-
Constructor Summary
ConstructorsConstructorDescriptionUndoPagesConfig
(DesignerContext context, PagesConfig oldConfig, PagesConfig newConfig) -
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
-
UndoPagesConfig
-
-
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
-