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

Examples of org.jitterbit.integration.client.ui.interchange.entity.script.ScriptPluginProviderImpl


    private ScriptPluginSelector createPluginSelector() {
        InterchangeView view = treeMapper.getTreeMapperContainer().getView();
        ServerManager serverManager = view.getServerManager();
        Action loginAction = treeMapper.getTreeMapperContainer().getLoginAction();
        ScriptPluginProviderImpl provider = new ScriptPluginProviderImpl(serverManager, loginAction);
        ScriptPluginSelector selector = DefaultSelectorsBuilder.buildPluginSelector(provider);
        return selector;
    }
View Full Code Here


    }

    private void openPad() {
        if (scriptPad == null) {
            scriptPad = new ScriptPad(appWin.getEditorService(), getProject(), debugService);
            scriptPad.setPluginProvider(new ScriptPluginProviderImpl(connectionService, loginAction));
            scriptPad.setModeSelector(modeSelector);
        }
        scriptPad.open();
    }
View Full Code Here

        ScriptPage scriptPage = (ScriptPage) page;
        addCommands(scriptPage);
        impl.configure(page);
        scriptPage.setModeSelector(modeSelector);
        scriptPage.setDebugService(impl.getView().getPlatformDebugService());
        scriptPage.setPluginProvider(new ScriptPluginProviderImpl(impl.getView().getServerManager(), loginAction));
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.script.ScriptPluginProviderImpl

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.