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

Examples of org.jitterbit.integration.client.ui.script.debug.ScriptDebugModel


    private void provideFunctionInserterWithTester(ScriptTestUi debugUi) {
        // TODO: Get the TestScriptProvider from the ScriptTestUi. We need to refactor
        // ScriptTestUi for that (and for other reasons as well!).
        TestScriptProvider testProvider = getTestProvider();
        ScriptDebugModel debugModel = debugUi.getModel();
        FunctionTester tester = new DefaultFunctionTester(testProvider, debugModel, translator);
        functionInserterLookup.setFunctionTester(tester);
        ExpressionParser parser = new ExpressionParser(model.getSource());
        functionInserterLookup.setExpressionParser(parser);
    }
View Full Code Here


    private final Action resetAction;

    private final KongaTextArea testArea;

    public DefaultScriptTestUi(DebugService debugService, IntegrationEntity debuggee, Action[] actions) {
        model = new ScriptDebugModel(debugService, debuggee.getID());
        console = new DebugConsole(model, actions);
        deViewer = new DataElementViewer(model.getDataElementsModel());
        deViewer.setSourceDataElementValuesEditable(model.areSourceDataElementValuesEditable());
        resetAction = new ResetDataElementsAction();
        testArea = KongaTextArea.viewer(10, 50);
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.script.debug.ScriptDebugModel

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.