public interface TaskResultsInterface
TaskResults
,
TaskInterface
,
Task
Modifier and Type | Method and Description |
---|---|
EnumResult |
getResult()
Return the value of the result
|
EnumStatus |
getStatus()
Return the value of the status
|
java.lang.String |
getStdErr()
Return the stderr related to the task
|
java.lang.String |
getStdOut()
Return the stdOut related to the task
|
float |
getTimeInfo()
Return the time elapsed during the last execution of the task
|
void |
setResult(EnumResult result)
Change the EnumResult with the one given in parameter
|
void |
setStatus(EnumStatus status)
Change the value of the status with the one given in parameters
|
void |
setStdErr(java.lang.String stdErr)
Change the stderr of the task with the new one given in parameters
|
void |
setStdOut(java.lang.String stdOut)
Change the stdout of the task with the new one given in parameters
|
void |
setTimeCompilInfo(float timeCompilInfo)
Change the compilation's time with the new one given in parameters
|
void |
setTimeExecInfo(float timeExecInfo)
Change the execution's time with the new one given in parameters
|
void setStatus(EnumStatus status)
status
- the EnumStatus representing the status' valuevoid setResult(EnumResult result)
result
- the new result's valuevoid setStdOut(java.lang.String stdOut)
a
- String representing the new task's stdoutvoid setTimeCompilInfo(float timeCompilInfo)
timeCompilInfo
- a float representing the time elapsed during
the last compilation of the taskvoid setTimeExecInfo(float timeExecInfo)
timeExecInfo
- a float representing the time elapsed during
the last execution of the taskvoid setStdErr(java.lang.String stdErr)
stdErr
- a String representing the new stderrfloat getTimeInfo()
EnumStatus getStatus()
EnumResult getResult()
java.lang.String getStdOut()
java.lang.String getStdErr()