106107108109110111112113114115116
public void suspend(long threadId) throws DebugException { IJavaThread thread = threadMap.get(threadId); if (thread != null) { thread.suspend(); } } /** * Resumes execution of the given thread.