Package jetbrains.buildServer
Class ExecResult
- java.lang.Object
-
- jetbrains.buildServer.ExecResult
-
public final class ExecResult extends Object
-
-
Constructor Summary
Constructors Constructor Description ExecResult()
ExecResult(Charset charset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getElapsedTime()
Throwable
getException()
int
getExitCode()
String[]
getOutLines()
String
getStderr()
String
getStdout()
void
setElapsedTime(long milliseconds)
void
setErrorGobbler(StreamGobbler errorGobbler)
void
setException(Throwable exception)
void
setExitCode(int exitCode)
void
setOutputGobbler(StreamGobbler outputGobbler)
void
setStderr(String stderr)
void
setStdout(String stdout)
String
toString()
-
-
-
Constructor Detail
-
ExecResult
public ExecResult()
-
ExecResult
public ExecResult(Charset charset)
-
-
Method Detail
-
getExitCode
public int getExitCode()
-
setExitCode
public void setExitCode(int exitCode)
-
setStdout
public void setStdout(String stdout)
-
setStderr
public void setStderr(String stderr)
-
getStdout
@NotNull public String getStdout()
-
getOutLines
@NotNull public String[] getOutLines()
-
setOutputGobbler
public void setOutputGobbler(StreamGobbler outputGobbler)
-
setErrorGobbler
public void setErrorGobbler(StreamGobbler errorGobbler)
-
getStderr
@NotNull public String getStderr()
-
getException
public Throwable getException()
-
setException
public void setException(Throwable exception)
-
setElapsedTime
public void setElapsedTime(long milliseconds)
-
getElapsedTime
public long getElapsedTime()
-
-