Examples of DummyWaitService


Examples of org.jitterbit.ui.wait.DummyWaitService

   
    private WaitService waitService;

    public DeepCopyUndoer(DeepCopyResult result) {
        this.result = result;
        waitService = new DummyWaitService();
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

   
    private volatile WaitService waitService;

    public DeepCopyReplacer(DeepCopyResult result) {
        this.result = result;
        waitService = new DummyWaitService();
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

    private Set<IntegrationEntity> itemsToExclude;

    public DeepCopyUi(IntegrationProject project, EntityResources resources) {
        this.project = project;
        this.resources = resources;
        waitService = new DummyWaitService();
        itemsToExclude = Sets.newHashSet();
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

    private RecentProjectsViewer viewer;

    public RenameProjectAction() {
        super(ProjectLocation.class, Strings.get("Recent.Rename.Name"));
        this.waitService = new DummyWaitService();
        putValue(ACCELERATOR_KEY, KeyUtils.F2);
        putValue(SHORT_DESCRIPTION, Strings.get("Recent.Rename.ToolTip"));
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

        checkNotNull(location, "location");
        checkNotNull(exceptionHandler, "exceptionHandler");
        this.projectManager = projectManager;
        this.projectLocation = location;
        this.exceptionHandler = exceptionHandler;
        waitService = new DummyWaitService();
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

    }

    public SingleLockWaitServiceBinding(Property<Boolean> property, WaitService waitService) {
        super(property);
        if (waitService == null) {
            waitService = new DummyWaitService();
        }
        this.waitService = new SingleLockWaitService(waitService);
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

            return (WaitService) owner;
        }
        if (owner instanceof RootPaneContainer) {
            return new WindowWaitService((RootPaneContainer) owner);
        }
        return new DummyWaitService();
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

    public BusyWorker(WaitService waitService) {
        this(waitService, null);
    }

    public BusyWorker(WaitService waitService, Runnable job) {
        this.waitService = (waitService != null) ? waitService : new DummyWaitService();
        this.job = job;
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

    }

    public AbstractApplicationAction(String id, String name, Icon icon) {
        super(name, icon);
        this.id = id;
        waitService = new DummyWaitService();
    }
View Full Code Here

Examples of org.jitterbit.ui.wait.DummyWaitService

    }
   
    public SaveCopyAsAction(File sourceFile) {
        super("Save a Copy As...", CommonIcons.SAVE_16);
        this.sourceFile = sourceFile;
        waitService = new DummyWaitService();
        setEnabled(sourceFile != null);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.