Package org.jitterbit.integration.client.ui.deploy.option

Examples of org.jitterbit.integration.client.ui.deploy.option.DeployDirtyItemsOption


        this.project = project;
        this.launcher = launcher;
        deployTree = new DeployTreePanel(project.getProject(), project.getValidationModel());
        options = new DeployOption[] {
            new DeployEverythingOption(project.getProject(), launcher),
            new DeployDirtyItemsOption(project.getProject(), launcher),
            new DeployAllValidItemsOption(project, launcher),
            getIndividualItemsOption(launcher),
        };
        setIcon(ClientIcons.DEPLOY_16);
        setCategory(new EditorCategory("Deploy", getSmallIcon()));
View Full Code Here


        super(view);
    }

    @Override
    protected DeployOption createOption(DeployLauncher launcher) {
        return new DeployDirtyItemsOption(getProject(), launcher);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.deploy.option.DeployDirtyItemsOption

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.