com.ibm.jsdt.support.deploymenthelper
Class ProgramOutput

java.lang.Object
  extended by com.ibm.jsdt.support.deploymenthelper.OperationStatus
      extended by com.ibm.jsdt.support.deploymenthelper.ProgramOutput

public class ProgramOutput
extends OperationStatus

ProgramOutput objects provide a container for the output (stderr, stdout, return code, exceptions) of an executeCommand operation.


Field Summary
 
Fields inherited from class com.ibm.jsdt.support.deploymenthelper.OperationStatus
ERROR, INFO, OK, WARNING
 
Constructor Summary
ProgramOutput()
           
 
Method Summary
 java.lang.String getCommandLine()
           
 int getReturnCode()
           
 java.lang.String getStdErr()
           
 java.lang.String getStdOut()
           
protected  void setCommandLine(java.lang.String cmd)
           
protected  void setReturnCode(int rc)
           
protected  void setStdErr(java.lang.String error)
           
protected  void setStdOut(java.lang.String output)
           
 
Methods inherited from class com.ibm.jsdt.support.deploymenthelper.OperationStatus
getException, getMessage, getSeverity, isOK, setException, setMessage, setSeverity
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProgramOutput

public ProgramOutput()
Method Detail

setCommandLine

protected void setCommandLine(java.lang.String cmd)

getCommandLine

public java.lang.String getCommandLine()

setReturnCode

protected void setReturnCode(int rc)

getReturnCode

public int getReturnCode()

setStdErr

protected void setStdErr(java.lang.String error)

getStdErr

public java.lang.String getStdErr()

setStdOut

protected void setStdOut(java.lang.String output)

getStdOut

public java.lang.String getStdOut()