/** @return true if the debug server is running and false otherwise. */
 public static boolean isRunning() {
   RemoteDebuggerServer instance = RemoteDebuggerServer.getInstance();
   return !instance.isTerminated();
 }