delete obsolete emf crud

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@531 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-01-08 17:19:16 +00:00
parent 77a46cb35b
commit c96ff262b4
1 changed files with 2 additions and 38 deletions

View File

@ -16,45 +16,9 @@ import com.ibm.wala.util.warnings.WalaException;
* A generic process launcher
*/
public class BasicLauncher extends Launcher {
/**
* The default value of the '{@link #getCmd() <em>Cmd</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCmd()
* @generated
* @ordered
*/
protected static final String CMD_EDEFAULT = null;
/**
* The cached value of the '{@link #getCmd() <em>Cmd</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCmd()
* @generated
* @ordered
*/
protected String cmd = CMD_EDEFAULT;
protected String cmd;
/**
* The default value of the '{@link #isCaptureOutput() <em>Capture Output</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isCaptureOutput()
* @generated
* @ordered
*/
protected static final boolean CAPTURE_OUTPUT_EDEFAULT = false;
/**
* The default value of the '{@link #getOutput() <em>Output</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getOutput()
* @generated
* @ordered
*/
protected static final byte[] OUTPUT_EDEFAULT = null;
/**
* <!-- begin-user-doc -->
@ -118,4 +82,4 @@ public class BasicLauncher extends Launcher {
setOutput(d.getCapture().toByteArray());
}
}
} //BasicLauncher
}