Package org.jitterbit.integration.client.ui.interchange.transformation.wizard

Examples of org.jitterbit.integration.client.ui.interchange.transformation.wizard.TransformationWizard


    }

    @Override
    public Wizard<?> createWizard(IntegrationEntity entity, Folder parent) {
        setShowInDialog(true);
        TransformationWizard wizard = createWizardImpl((Transformation) entity, parent);
        createWizardDisplayer(wizard, EntityType.Transformation);
        return wizard;
    }
View Full Code Here


        createWizardDisplayer(wizard, EntityType.Transformation);
        return wizard;
    }

    private TransformationWizard createWizardImpl(Transformation tx, Folder parent) {
        TransformationWizard wizard = new TransformationWizard(config, tx, parent, explorerSupport, getFileStore());
        wizard.addWizardListener(new EntityWizardCompleter<Transformation>(wizard,
                        getProject(), getProjectPersistor(), parent));
        return wizard;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.transformation.wizard.TransformationWizard

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.