source: AE/installer2/src/net/oni2/aeinstaller/backend/appexecution/AppExecutionResult.java@ 702

Last change on this file since 702 was 702, checked in by alloc, 12 years ago

AEI2 0.99u:

  • Fixed a few bugs in apply patches
  • Added some log output to apply patches
File size: 713 bytes
RevLine 
[702]1package net.oni2.aeinstaller.backend.appexecution;
2
3import java.util.Vector;
4
5/**
6 * @author Christian Illy
7 */
8public class AppExecutionResult {
9 /**
10 * Returned error code
11 */
12 public int errorCode;
13 /**
14 * Call command line
15 */
16 public Vector<String> cmdLine;
17 /**
18 * Combined StdOut+ErrOut lines
19 */
20 public Vector<String> output;
21
22 /**
23 * @param errorCode
24 * Error code from executed program
25 * @param cmdLine
26 * Commandline of call
27 * @param output
28 * Output of executed program
29 */
30 public AppExecutionResult(int errorCode, Vector<String> cmdLine,
31 Vector<String> output) {
32 this.errorCode = errorCode;
33 this.cmdLine = cmdLine;
34 this.output = output;
35 }
36}
Note: See TracBrowser for help on using the repository browser.