Package edu.isi.karma.controller.update

Examples of edu.isi.karma.controller.update.NodeChangedUpdate


    }   
    node.setValue(newValueArg, Node.NodeStatus.edited,
        workspace.getFactory());
    WorksheetUpdateFactory.detectSelectionStatusChange(worksheetId, workspace, this);
    UpdateContainer uc = WorksheetUpdateFactory.createWorksheetHierarchicalAndCleaningResultsUpdates(worksheetId, sel);
    uc.add(new NodeChangedUpdate(worksheetId,
        nodeIdArg, newValueArg, Node.NodeStatus.edited));
    return uc;
  }
View Full Code Here


  public UpdateContainer undoIt(Workspace workspace) {
    Node node = workspace.getFactory().getNode(nodeIdArg);
    SuperSelection sel = getSuperSelection(workspace);
    node.setValue(previousValue, previousStatus, workspace.getFactory());
    UpdateContainer uc = WorksheetUpdateFactory.createWorksheetHierarchicalAndCleaningResultsUpdates(worksheetId, sel);
    uc.add(new NodeChangedUpdate(worksheetId,
        nodeIdArg, previousValue, previousStatus));
    return uc;
  }
View Full Code Here

TOP

Related Classes of edu.isi.karma.controller.update.NodeChangedUpdate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.