本文整理汇总了Java中com.sun.jdi.request.EventRequestManager.createBreakpointRequest方法的典型用法代码示例。如果您正苦于以下问题:Java EventRequestManager.createBreakpointRequest方法的具体用法?Java EventRequestManager.createBreakpointRequest怎么用?Java EventRequestManager.createBreakpointRequest使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.jdi.request.EventRequestManager
的用法示例。
在下文中一共展示了EventRequestManager.createBreakpointRequest方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addBreakpoint
import com.sun.jdi.request.EventRequestManager; //导入方法依赖的package包/类
private static void addBreakpoint(VirtualMachine vm, ReferenceType refType) {
Location breakpointLocation = null;
List<Location> locs;
try {
locs = refType.allLineLocations();
for (Location loc: locs) {
if (loc.method().name().equals(METHOD_NAME)) {
breakpointLocation = loc;
break;
}
}
} catch (AbsentInformationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (breakpointLocation != null) {
EventRequestManager evtReqMgr = vm.eventRequestManager();
BreakpointRequest bReq = evtReqMgr.createBreakpointRequest(breakpointLocation);
bReq.setSuspendPolicy(BreakpointRequest.SUSPEND_ALL);
bReq.enable();
}
}
示例2: process
import com.sun.jdi.request.EventRequestManager; //导入方法依赖的package包/类
public void process(String accessControlClass, int lineNum) throws Exception {
EventRequestManager erm = vm.eventRequestManager();
Optional<ReferenceType> classRef = getFirstClassReference(accessControlClass);
if (!classRef.isPresent()) {
throw new ClassNotFoundException(String.format("Class %s not found", accessControlClass));
}
ReferenceType accRef = classRef.get();
Field contextField = accRef.fieldByName("context");
Location location = accRef.locationsOfLine(lineNum).get(0);
BreakpointRequest br = erm.createBreakpointRequest(location);
loop(br, contextField);
}
示例3: processClassPrepareEvent
import com.sun.jdi.request.EventRequestManager; //导入方法依赖的package包/类
private void processClassPrepareEvent() throws AbsentInformationException {
EventRequestManager erm = vm.eventRequestManager();
List<ReferenceType> referenceTypes = vm.classesByName(this.location.getContainingClassName());
List listOfLocations = referenceTypes.get(0).locationsOfLine(this.location.getLineNumber());
if (listOfLocations.size() == 0) {
throw new RuntimeException("Buggy class not found " + this.location);
}
com.sun.jdi.Location jdiLocation = (com.sun.jdi.Location) listOfLocations.get(0);
this.buggyMethod = jdiLocation.method().name();
breakpointSuspicious = erm.createBreakpointRequest(jdiLocation);
breakpointSuspicious.setEnabled(true);
initSpoon();
this.initExecutionTime = System.currentTimeMillis();
}