package net.oni2.platformtools.applicationinvoker; import java.util.Vector; /** * @author Christian Illy */ public class ApplicationInvocationResult { /** * Returned error code */ public int errorCode; /** * Call command line */ public Vector cmdLine; /** * Combined StdOut+ErrOut lines */ public Vector output; /** * Time the app was run for */ public int time; /** * @param errorCode * Error code from executed program * @param cmdLine * Commandline of call * @param output * Output of executed program * @param time * Time of execution in ms */ public ApplicationInvocationResult(int errorCode, Vector cmdLine, Vector output, int time) { this.errorCode = errorCode; this.cmdLine = cmdLine; this.output = output; this.time = time; } }