Package org.jitterbit.integration.data.entity.operation.options

Examples of org.jitterbit.integration.data.entity.operation.options.RunInDebugModeOption


        this(op.getOptions(), op.getPipeline());
    }

    private DebugModeOptionUi(OperationOptions options, OperationPipeline pipeline) {
        super("Run In &Debug Mode");
        RunInDebugModeOption current = options.getDebugOption();
        setSelected(current.isDebugModeEnabled());
        setEnabled(current.isApplicableFor(pipeline));
    }
View Full Code Here


        setEnabled(current.isApplicableFor(pipeline));
    }

    @Override
    public RunInDebugModeOption getDefinedOption() {
        return new RunInDebugModeOption(isSelected());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.operation.options.RunInDebugModeOption

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.