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

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


        if (controller.isChangeAllowed(opNode)) {
            ScheduleId prevId = opNode.getDataObject().getScheduleId();
            ScheduleId newId = (schedule != null ? schedule.getID() : null);
            if (differs(prevId, newId)) {
                opNode.getDataObject().setScheduleId(newId);
                UndoableEdit edit = new OperationScheduleEdit(controller, opNode, prevId, newId);
                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.OperationScheduleEdit

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.