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

Examples of org.jitterbit.integration.client.ui.interchange.entity.operation.graph2d.TransformationContentProvider$TransformationConfiguration


    @Override
    public void selectActivity(OperationGraphController controller, OperationWrapperNode opNode) {
        OperationPipeline pipeline = opNode.getPipeline();
        TransformationActivity activity = getDataObject();
        TransformationContentProvider p = new TransformationContentProvider(
                        controller.getProject(),
                        pipeline.getType().getTransformationActivityFilterProvider(pipeline),
                        ActivityContentAcceptor.create(controller,opNode, activity));
        controller.configureContentProvider(p, activity, opNode);
        p.selectExisting(activity);
    }
View Full Code Here


    public void visit(TransformationActivity activity) {
        OperationPipeline pipeline = opNode.getPipeline();
        EntityFilterProvider<TransformationActivity> filter =
            pipeline.getType().getTransformationActivityFilterProvider(pipeline);
        Receiver<Transformation> receiver = ActivityContentAcceptor.create(controller, opNode, activity);
        TransformationContentProvider p = new TransformationContentProvider(controller.getProject(), filter, receiver);
        configure(p);
        addContentProviderActions(popup, activity, p);
        if (isPassThroughTransformationSupported(activity)) {
            popup.add(new SetPassThroughAction(controller, opNode, activity));
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.operation.graph2d.TransformationContentProvider$TransformationConfiguration

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.