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

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


        return new PipelineActivityInserter(this).insertNewActivity(pipeline, connectionPoint, toInsert);
    }

    @Override
    public void configureContentProvider(IntegrationEntityContentProvider<?, ?> provider, PipelineActivity activity, OperationWrapperNode opNode) {
        ContentProviderContext ctx = new ContentProviderContext(opNode.getPipeline(), activity);
        provider.setContext(ctx);
        provider.setEntityFactory(entityFactory);
    }
View Full Code Here


    public void visit(BulkLoadActivity activity) {
        throw new NotImplementedYetException();
    }

    private void configure(IntegrationEntityContentProvider<?, ?> provider) {
        ContentProviderContext ctx = new ContentProviderContext(opNode.getPipeline(), activityNode.getDataObject());
        provider.setContext(ctx);
        provider.setEntityFactory(controller.getEntityFactory());
        provider.setMutationGate(gate);
    }
View Full Code Here

TOP

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

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.