Package org.jitterbit.application.ui

Examples of org.jitterbit.application.ui.BusyWorker


    }

    @Override
    public final void showMapping(final TreeMapper treeMapper, final String targetDE, final NodeMapping mapping,
                    final String currentExpression, final TestResult testResult) {
        new BusyWorker(treeMapper.getTreeMapperContainer().getWaitService()) {

            @Override
            protected void doWork() {
                showFormulaImpl(treeMapper, currentExpression, targetDE, mapping, testResult);
            }
View Full Code Here


        this.mode = mode;
    }

    @Override
    public void execute(ActionEvent e) {
        new BusyWorker(getWaitService(), new Worker()).runInBackgroundThread();
    }
View Full Code Here

    @Override
    public void execute(ActionEvent e) {
        setEnabled(false);
        final TransformationPageRefresher refresher = new RefresherImpl();
        refresher.setLogger(MappingStructureLog.LOG);
        new BusyWorker(page.getWaitService()) {

            @Override
            protected void doWork() {
                refresher.refresh();
            }
View Full Code Here

                revive(items);
            }
        }

        private void revive(final List<IntegrationEntity> toRevive) {
            new BusyWorker(waitService) {

                @Override
                protected void doWork() {
                    trashCan.revive(toRevive, new Callback());
                }
View Full Code Here

            startPostSaveRefresh();
        }
    }

    private void startPostSaveRefresh() {
        new BusyWorker(getWaitService()) {

            @Override
            protected void doWork() {
                TransformationPageRefresher r = new TransformationPageRefresher(TransformationPage.this);
                r.setSavePageWhenDone(true);
View Full Code Here

        setEnabledSafely(info != null);
    }

    @Override
    public void execute(ActionEvent e) {
        new BusyWorker(page.getWaitService()) {

            @Override
            protected void doWork() {
                removeTestData();
            }
View Full Code Here

            public void run() {
                lanchAuxiliarySelector(node, waitService);
            }

        };
        new BusyWorker(waitService, job).run();
    }
View Full Code Here

        setSelection(SelectionFactory.newOrderedSelection(node));
    }

    @Override
    protected void run(final OperationWrapperNode selected, final ActionEvent evt) {
        new BusyWorker(getWaitService()) {

            @Override
            protected void doWork() {
                executeImpl(selected);
            }
View Full Code Here

            ex.printStackTrace();
        }
    }

    private void submitJob(final ActivitySubject subject) {
        new BusyWorker(waitService) {

            @Override
            protected void doWork() {
                ActivityPageManager displayer = getActivityPageManager();
                displayer.display(subject);
View Full Code Here

        return dlg;
    }

    private void createStructure() {
        Runnable job = new CreateStructureJob();
        new BusyWorker(appWin, job).runInBackgroundThread();
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.BusyWorker

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.