public void terminate() throws DebugException { try { fVM.sendRequest(new VMTerminateRequest()); } catch (IOException e) { throw new DebugException(QVTODebugUtil.createDebugError("Process termination Failed", e)); } }
public boolean isTerminated() { return fVM.isTerminated(); }