1 19 20 package org.netbeans.api.debugger.jpda; 21 22 23 33 public interface JPDAThreadGroup { 34 35 36 41 public abstract String getName (); 42 43 48 public abstract JPDAThreadGroup getParentThreadGroup (); 49 50 55 public abstract JPDAThread[] getThreads (); 56 57 62 public abstract JPDAThreadGroup[] getThreadGroups (); 63 64 67 public abstract void suspend (); 68 69 72 public abstract void resume (); 73 } | Popular Tags |