Package org.jitterbit.integration.debug.serverapi

Examples of org.jitterbit.integration.debug.serverapi.ServerTestCallbackAdapter


    public TestOperationJob(Operation operation, Transformation transformation, DebugService debugService, ServerTestCallback callback) {
        super(getName(operation));
        this.debugService = debugService;
        this.operation = operation;
        this.transformation = transformation;
        externalCallback = (callback != null) ? callback : new ServerTestCallbackAdapter() {/**/};
        internalCallback = new InternalCallback();
        setUncaughtExceptionHandler(internalCallback);
        setBlockUntilDone(true);
    }
View Full Code Here


                    ServerTestCallback callback) {
        super(getName(tx));
        transformation = tx;
        this.sourceDataToken = sourceDataToken;
        this.debugService = debugService;
        externalCallback = (callback != null) ? callback : new ServerTestCallbackAdapter() {/**/};
        internalCallback = new InternalCallback();
        setUncaughtExceptionHandler(internalCallback);
        setBlockUntilDone(true);
    }
View Full Code Here

    }

    private void prepareDebugModel(final ScriptDebugModel model) {
        model.setExpressionArea(expressionArea);
        model.setExpressionTranslator(translator);
        model.setCallback(new ServerTestCallbackAdapter() {

            @Override
            public void cancelled() {
                model.setDebugMessage("");
            }
View Full Code Here

        this.debugService = debugService;
        this.debuggeeId = debuggeeId;
        dataElementsModel = new ScriptDataElementsModel();
        testProviderId = newProperty(TEST_PROVIDER_ID, null);
        debugMessage = newProperty(DEBUG_MESSAGE, "");
        callback = new ServerTestCallbackAdapter() {/**/};
        startEnabled = newProperty(IS_START_ENABLED, Boolean.FALSE);
        disableBreakpoints = newProperty(DISABLE_BREAKPOINTS, Boolean.FALSE);
        lineNumber = newProperty(LINE_NUMBER, Integer.valueOf(-1));
        sourceDeContainer = SourceDataElementContainer.EMPTY;
        listener = new Listener();
View Full Code Here

    public ServerTestCallback getCallback() {
        return callback;
    }

    public void setCallback(ServerTestCallback callback) {
        this.callback = (callback != null ? callback : new ServerTestCallbackAdapter() {/**/});
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.debug.serverapi.ServerTestCallbackAdapter

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.