< prev index next >

test/jdk/com/sun/jdi/lib/jdb/JdbCommand.java

Print this page

        

@@ -143,10 +143,13 @@
         return new JdbCommand("quit").allowExit();
     }
     public static JdbCommand stopAt(String targetClass, int lineNum) {
         return new JdbCommand("stop at " + targetClass + ":" + lineNum);
     }
+    public static JdbCommand stopThreadAt(String targetClass, int lineNum) {
+        return new JdbCommand("stop thread at " + targetClass + ":" + lineNum);
+    }
     public static JdbCommand stopIn(String targetClass, String methodName) {
         return new JdbCommand("stop in " + targetClass + "." + methodName);
     }
 
     // clear <class id>:<line>   -- clear a breakpoint at a line
< prev index next >