AndroidLaunchpublic class AndroidLaunch extends org.eclipse.debug.core.Launch Custom implementation of Launch to allow access to the LaunchManager |
Methods Summary |
---|
public void | stopLaunch()Stops the launch, and removes it from the launch manager
ILaunchManager mgr = getLaunchManager();
if (canTerminate()) {
try {
terminate();
} catch (DebugException e) {
// well looks like we couldn't stop it. nothing else to be
// done really
}
}
// remove the launch
mgr.removeLaunch(this);
|
|