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