我正在尝试在我的 Eclipse 插件中以编程方式设置断点。它似乎工作正常;标记被添加到编辑器侧边栏中,并且断点条目也被添加到断点视图中。但是当我调试程序时,VM 不会在断点处挂起。此外,如果我在调用 to 之前暂停 VM getNormalFlowFunction
,然后尝试单步执行该方法,则 VM 会突然恢复并运行,直到程序结束。不幸的是,没有错误消息。我认为,我的参数有问题,但是从我找到的文档和示例代码中,我无法判断出了什么问题。有任何想法吗?
这是我设置断点的方式
IJavaMethodBreakpoint breakpoint = JDIDebugModel.createMethodBreakpoint(resource, className, methodName, methodSignature, entry, exit, nativeOnly, lineNumber, charStart, charEnd, hitCount, register, attrs);
我使用这些参数值:
resource: L/code/src/code/Main.java
class: Main
method: getNormalFlowFunction
signature: (QString;)QString;
resource: L/code/src/code/Main.java
entry: true
exit: false
nativeOnly: false
line: 12
charStart: 248
charEnd: 405
hit count: 0
register: true
attrs: {}
目标类如下所示:
package code;
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
System.out.println("Bla");
String outSet = getNormalFlowFunction("Hallo");
System.out.println(outSet);
anotherMethod();
}
public static String getNormalFlowFunction(String inSet) {
System.out.println("getNormalFlowFunction");
String outSet = inSet + inSet;
return outSet;
}
public static void anotherMethod() {
System.out.println("Another method");
}
}
编辑:我还注意到,当我在启动调试器之前手动设置断点时,手动设置的断点会得到小复选标记,但我以编程方式设置的断点没有。