Package org.jitterbit.integration.data.entity.operation.pipeline

Examples of org.jitterbit.integration.data.entity.operation.pipeline.ActivityConnection


    public PipelineActivityNode to() {
        return to;
    }
   
    public ActivityConnection asConnectionPoint() {
        return new ActivityConnection(from.getDataObject(), to.getDataObject());
    }
View Full Code Here


        popup.add(new ViewValidationMessagesAction(controller.getGraph(), node));
    }

    private void checkPreConnectionPoint(PipelineActivityNode node) {
        if (hasPreConnectionPoint(node)) {
            ActivityConnection connection = new ActivityConnection(null, node.getDataObject());
            insertConnectionPointMenu(node, connection, "Insert Before This");
        }
    }
View Full Code Here

        }
    }

    private void checkPostConnectionPoint(PipelineActivityNode node) {
        if (hasPostConnectionPoint(node)) {
            ActivityConnection connection = new ActivityConnection(node.getDataObject(), null);
            insertConnectionPointMenu(node, connection, "Insert After This");
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.operation.pipeline.ActivityConnection

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.