GraphLab Project

Uses of Class
graphlab.plugins.commonplugin.undo.UndoableActionOccuredData

Packages that use UndoableActionOccuredData
graphlab.extensions.actions   
graphlab.plugins.commonplugin.undo   
graphlab.plugins.commonplugin.undo.undo   
graphlab.plugins.main.core   
graphlab.plugins.main.core.actions   
graphlab.plugins.main.core.actions.edge   
graphlab.plugins.main.core.actions.vertex   
graphlab.plugins.main.select   
 

Uses of UndoableActionOccuredData in graphlab.extensions.actions
 

Methods in graphlab.extensions.actions with parameters of type UndoableActionOccuredData
 void GraphPower.redo(UndoableActionOccuredData uaod)
           
 void GraphPower.undo(UndoableActionOccuredData uaod)
           
 

Uses of UndoableActionOccuredData in graphlab.plugins.commonplugin.undo
 

Methods in graphlab.plugins.commonplugin.undo with parameters of type UndoableActionOccuredData
static void UndoableActionOccuredData.addUndoData(BlackBoard blackboard, UndoableActionOccuredData data)
          puts data in the stack of undo/redo actions, so it will be regarded as an undoable action and will be undone by the rules of undo/redo.
 void Undoable.redo(UndoableActionOccuredData uaod)
           
 void Undoable.undo(UndoableActionOccuredData uaod)
           
 

Uses of UndoableActionOccuredData in graphlab.plugins.commonplugin.undo.undo
 

Methods in graphlab.plugins.commonplugin.undo.undo that return UndoableActionOccuredData
 UndoableActionOccuredData UndoLogManager.getNextRedoData()
          returns the data for the next undo action
 UndoableActionOccuredData UndoLogManager.getNextUndoData()
          returns the data for the next undo action
 

Methods in graphlab.plugins.commonplugin.undo.undo with parameters of type UndoableActionOccuredData
static void RedoAction.redo(UndoableActionOccuredData uaod)
          performs the redo operation for basic actions
static void UndoAction.undo(UndoableActionOccuredData uaod)
          performs the undo operation for basic actions
 

Uses of UndoableActionOccuredData in graphlab.plugins.main.core
 

Methods in graphlab.plugins.main.core with parameters of type UndoableActionOccuredData
 void CorePluginMethods.addUndoData(UndoableActionOccuredData data)
          puts data in the stack of undo/redo actions, so it will be regarded as an undoable action and will be undone by the rules of undo/redo.
 

Uses of UndoableActionOccuredData in graphlab.plugins.main.core.actions
 

Methods in graphlab.plugins.main.core.actions with parameters of type UndoableActionOccuredData
 void VertexTransformer.redo(UndoableActionOccuredData uaod)
           
 void VertexTransformer.undo(UndoableActionOccuredData uaod)
           
 

Uses of UndoableActionOccuredData in graphlab.plugins.main.core.actions.edge
 

Methods in graphlab.plugins.main.core.actions.edge with parameters of type UndoableActionOccuredData
 void AddEdge.redo(UndoableActionOccuredData uaod)
           
 void DeleteEdge.redo(UndoableActionOccuredData uaod)
           
 void DragEdge.redo(UndoableActionOccuredData uaod)
           
 void AddEdge.undo(UndoableActionOccuredData uaod)
           
 void DeleteEdge.undo(UndoableActionOccuredData uaod)
           
 void DragEdge.undo(UndoableActionOccuredData uaod)
           
 

Uses of UndoableActionOccuredData in graphlab.plugins.main.core.actions.vertex
 

Methods in graphlab.plugins.main.core.actions.vertex with parameters of type UndoableActionOccuredData
 void VertexMoveEvent.redo(UndoableActionOccuredData uaod)
           
 void AddVertex.redo(UndoableActionOccuredData uaod)
           
 void MoveVertex.redo(UndoableActionOccuredData uaod)
           
 void DeleteVertex.redo(UndoableActionOccuredData uaod)
           
 void VertexMoveEvent.undo(UndoableActionOccuredData uaod)
           
 void AddVertex.undo(UndoableActionOccuredData uaod)
           
 void MoveVertex.undo(UndoableActionOccuredData uaod)
           
 void DeleteVertex.undo(UndoableActionOccuredData uaod)
           
 

Uses of UndoableActionOccuredData in graphlab.plugins.main.select
 

Methods in graphlab.plugins.main.select with parameters of type UndoableActionOccuredData
 void MakeSelectionComplementGraph.redo(UndoableActionOccuredData uaod)
           
 void ScaleOutSelection.redo(UndoableActionOccuredData uaod)
           
 void MoveSelected.redo(UndoableActionOccuredData uaod)
           
 void DeleteSelected.redo(UndoableActionOccuredData uaod)
           
 void MakeSelectionComplementGraph.undo(UndoableActionOccuredData uaod)
           
 void ScaleOutSelection.undo(UndoableActionOccuredData uaod)
           
 void MoveSelected.undo(UndoableActionOccuredData uaod)
           
 void DeleteSelected.undo(UndoableActionOccuredData uaod)
           
 


GraphLab Project