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

Examples of org.jitterbit.integration.client.ui.interchange.entity.TransformationToOperationFactory


    public CreateOperationAction(Transformation tx, UiEntityFactory worker, EntityPageLocator pageLocator) {
        this(tx, createFactory(worker, pageLocator));
    }

    private static TransformationToOperationFactory createFactory(UiEntityFactory worker, EntityPageLocator pageLocator) {
        TransformationToOperationFactory f = new TransformationToOperationFactory(worker);
        f.setPageLocator(pageLocator);
        return f;
    }
View Full Code Here


    @Override
    protected PopupMenuItem createItem() {
        UiEntityFactory factory = new InterchangeEntityFactory(view);
        EntityPageLocator pageLocator = new ViewEntityPageDisplayer(view);
        TransformationToOperationFactory transform = new TransformationToOperationFactory(factory);
        transform.setPageLocator(pageLocator);
        return new ItemImpl(transform);
    }
View Full Code Here

            // Nothing to do.
        }
    }

    private void installTransformationToOperationDropHandler(MultiTreeSection s) {
        TransformationToOperationFactory f = new TransformationToOperationFactory(new InterchangeEntityFactory(view));
        installTransformDropHandler(s, f, Transformation.class);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.TransformationToOperationFactory

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.