Uses of Class
com.ibm.jsdt.support.deploymenthelper.OperationStatus

Packages that use OperationStatus
com.ibm.jsdt.support.deploymenthelper The support framework provides an easy way to perform functions commonly needed during installation. 
 

Uses of OperationStatus in com.ibm.jsdt.support.deploymenthelper
 

Subclasses of OperationStatus in com.ibm.jsdt.support.deploymenthelper
 class ProgramOutput
          ProgramOutput objects provide a container for the output (stderr, stdout, return code, exceptions) of an executeCommand operation.
 

Methods in com.ibm.jsdt.support.deploymenthelper that return OperationStatus
static OperationStatus DeploymentHelper.copyAndRenameFile(java.lang.String source, java.lang.String target, java.lang.String newName)
          Copies a file to another location and renames the file in the new target location.
static OperationStatus DeploymentHelper.copyDirectory(java.lang.String source, java.lang.String target)
          Copies a directory tree from the source to the target.
static OperationStatus DeploymentHelper.copyFile(java.lang.String source, java.lang.String target)
          This method copies a file to another location.
static OperationStatus DeploymentHelper.deleteFile(java.lang.String pathname)
          Deletes a file.
static OperationStatus DeploymentHelper.endOfFileScan(java.lang.String filePathName, java.lang.String searchString, int numOfCharsToSearch)
          Scans a file for a string, starting from the end.
static OperationStatus DeploymentHelper.fileScan(java.lang.String filePathName, java.lang.String searchString, int startIndex)
          Scans a file for a string.
static OperationStatus DeploymentHelper.logAppendFile(java.lang.String fileToAppendPath)
          This method provides a supported mechanism for adding the contents of a file to the log.
static OperationStatus DeploymentHelper.logAppendFile(java.lang.String[] fileNames)
          Appends the content of each file listed in the array to the deployment wizard log file.
static OperationStatus DeploymentHelper.setIbmNsiProperty(java.lang.String key, java.lang.String value)
          Sets a property into the currently cached ibmnsi Properties object and saves the updated properties to disk.
static OperationStatus DeploymentHelper.writeFile(java.lang.String filePathName, java.lang.String message, boolean append)
          Writes a String to a file, appends it to the file or overwrites the file.