Package org.jitterbit.integration.client.ui.script.builder

Examples of org.jitterbit.integration.client.ui.script.builder.ScriptBuilderUiFactory


            }
        });
    }

    private ScriptBuilderUi createScriptBuilder(GlobalDataElements des) {
        ScriptBuilderUiFactory factory = new ScriptBuilderUiFactory(project);
        factory.setPluginProvider(pluginProvider);
        installDebugActions(factory);
        interchangeDebugService.setScriptResultHandler(script.getID(), new Receiver<TestResult>() {

            @Override
            public void handle(TestResult result) {
                showResult(result);
            }
        });
        ScriptBuilderUi ui = factory.createScriptBuilder(script, modeSelector,
                        interchangeDebugService.getPlatformDebugService());
        configureCompletionContext(des, ui);
        if (latestExpression != null) {
            ui.setExpression(latestExpression);
        }
View Full Code Here


     *            the <code>DebugService</code> that provides testing capabilities to this
     *            <code>ScriptPanel</code>
     */
    protected ScriptBuilderUi createScriptBuilder(Script script, ScriptModeSelector modeSelector,
                    DebugService debugService, ScriptPluginProvider pluginProvider) {
        ScriptBuilderUiFactory factory = new ScriptBuilderUiFactory(project);
        installDebugActions(factory);
        factory.setPluginProvider(pluginProvider);
        return factory.createScriptBuilder(script, modeSelector, debugService);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.script.builder.ScriptBuilderUiFactory

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.