All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sikuli.natives.CommandExecutorResult Maven / Gradle / Ivy

/*
 * Copyright (c) 2010-2016, Sikuli.org, sikulix.com
 * Released under the MIT License.
 *
 */

package org.sikuli.natives;

public class CommandExecutorResult {
    private int exitValue;
    private String errorOutput;
    private String standardOutput;

    public CommandExecutorResult(int exitValue, String standardOutput, String errorOutput) {
        this.exitValue = exitValue;
        this.errorOutput = errorOutput;
        this.standardOutput = standardOutput;
    }

    public int getExitValue() {
        return exitValue;
    }

    public String getErrorOutput() {
        return errorOutput;
    }

    public String getStandardOutput() {
        return standardOutput;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy