ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/installer2/src/net/oni2/aeinstaller/backend/appexecution/AppExecutionResult.java
Revision: 702
Committed: Tue Mar 19 10:00:06 2013 UTC (12 years, 8 months ago) by alloc
Content type: text/x-java
File size: 713 byte(s)
Log Message:
AEI2 0.99u:
- Fixed a few bugs in apply patches
- Added some log output to apply patches

File Contents

# Content
1 package net.oni2.aeinstaller.backend.appexecution;
2
3 import java.util.Vector;
4
5 /**
6 * @author Christian Illy
7 */
8 public 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 }