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

Examples of org.jitterbit.integration.client.ui.interchange.entity.InterchangeEntityFactory$WizardRouter


    private void installPageActions(TransformationPage page) {
        page.setLoginAction(loginAction);
        page.setDebugActions(debugActions);
        page.addPageActions(
            new ClearTestDataAction(page),
            new CreateOperationAction(page.getObject(), new InterchangeEntityFactory(impl.getView()),
                                new ViewEntityPageDisplayer(impl.getView())),
            new ShowSourceDataNodesAction(page),
            new ShowTargetDataNodesAction(page),
            new ViewSourceFileAction(page),
            new ViewTargetFileAction(page),
View Full Code Here


    public DefaultOperationGraphController(InterchangeView view, IntegrationProject project, ProjectPersistor itemSaver) {
        this.view = view;
        this.project = project;
        this.itemSaver = itemSaver;
        pageDisplayer = createEntityPageDisplayer(view);
        entityFactory = new InterchangeEntityFactory(view, pageDisplayer);
        opNodeController = new OperationNodeControllerImpl(this);
        autoCompleters = Maps.newHashMap();
        opTypeSetter = new OperationTypeSetter(this);
        sourceAndTargetIconPrefListener = listenToIconPreference();
        controllerListeners = new CopyOnWriteArrayList<OperationGraphControllerListener>();
View Full Code Here

        this.view = view;
    }

    @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

            }
        });
    }

    private EntityExplorerSupport createExplorerSupport() {
        InterchangeEntityFactory f = new InterchangeEntityFactory(view);
        f.setShowWizardsInDialogs(true);
        return f.getExplorerSupport();
    }
View Full Code Here

    public Command[] build() {
        return new Command[] {
            CommandFactory.newCommand("run operation", new RunOperationExecutor(view, page)),
            CommandFactory.newCommand("reset layout", new ResetLayoutCommandExecutor(page)),
            CommandFactory.newCommand("call from script",
                            new CallFromScriptExecutor(new InterchangeEntityFactory(view), page.getObject())),
        };
    }
View Full Code Here

        checkNotNull(targetRoot, "targetRoot");
        transformation = tf;
        this.sourceRoot = sourceRoot;
        this.targetRoot = targetRoot;
        documentOwner = getDocumentOwner(ProjectUtils.getProject(tf));
        container = new TreeMapperWizardDialogContainer(view.getWindow(), new InterchangeEntityFactory(view),
                        view.getProjectPersistor());
        container.setWizard(this);
        setTitle("Text Document Wizard");
    }
View Full Code Here

        super(view, actionID);
    }

    @Override
    protected void performActionOn(WebServiceCall wsCall) {
        UiEntityFactory factory = new InterchangeEntityFactory(getView());
        UiEntityFactory.Callback callback = new TransformationDecorator(wsCall);
        factory.createEntity(EntityType.Transformation, true, callback);
    }
View Full Code Here

        super(view, actionID);
    }

    @Override
    protected void performActionOn(WebServiceCall wsCall) {
        UiEntityFactory factory = new InterchangeEntityFactory(getView());
        UiEntityFactory.Callback callback = new TransformationDecorator(wsCall);
        factory.createEntity(EntityType.Transformation, true, callback);
    }
View Full Code Here

    public UiEntityFactory getEntityFactory() {
        return entityFactory;
    }

    private UiEntityFactory createEntityFactory() {
        InterchangeEntityFactory factory = new InterchangeEntityFactory(view);
        factory.setShowWizardsInDialogs(true);
        return factory;
    }
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.InterchangeEntityFactory$WizardRouter

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.