Package org.jitterbit.integration.client.ui.interchange.entity.operation.graph2d.undo

Examples of org.jitterbit.integration.client.ui.interchange.entity.operation.graph2d.undo.OperationActivityNodeDeletedEdit


        this.controller = controller;
    }
   
    public boolean delete(EmailWrapperNode node) {
        if (!isConflict(node)) {
            UndoableEdit edit = new OperationActivityNodeDeletedEdit(controller, node);
            controller.getGraph().getModel().getModeledFlow().deleteEmail(node.getDataObject());
            controller.fireGraphDataEdit(edit);
            return true;
        }
        return false;
View Full Code Here


        this.nodeToDelete = nodeToDelete;
    }
   
    public boolean delete() {
        if (isDeleteable() && !isPotentialConflict()) {
            UndoableEdit edit = new OperationActivityNodeDeletedEdit(controller, nodeToDelete);
            updateFlow();
            controller.fireGraphDataEdit(edit);
            return true;
        }
        return false;
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.operation.graph2d.undo.OperationActivityNodeDeletedEdit

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.