public class ExecResult extends Object
Modifier and Type | Field and Description |
---|---|
String |
error
Process error.
|
String |
output
Process output.
|
int |
returnCode
Process return code.
|
long |
time
Process execution time (in ms).
|
Constructor and Description |
---|
ExecResult() |
Modifier and Type | Method and Description |
---|---|
String |
getError() |
String |
getOutput() |
int |
getReturnCode() |
long |
getTime() |
void |
setError(String error) |
void |
setOutput(String output) |
void |
setReturnCode(int returnCode) |
void |
setTime(long time) |
public long time
public String output
public String error
public int returnCode
public long getTime()
public void setTime(long time)
public String getOutput()
public void setOutput(String output)
public String getError()
public void setError(String error)
public int getReturnCode()
public void setReturnCode(int returnCode)
Copyright © 1999–2020 CodeLutin. All rights reserved.