I an using the Java Debug Interface API to write the custom programs for debugging the Java applications I write. I am able to add breakpoints to the start of required method invocation by using the code as:

ReferenceType classRef = vm.classesByName(className).get(0);
Method meth = classRef.methodsByName(methodName).get(0);
BreakpointRequest brF1 = vm.eventRequestManager().createBreakpointRequest(meth.location());
brF1.enable();

However I am unable to make out how to get Location objects for arbitrary location within the source files.

link|improve this question

79% accept rate
Why don't you use the debugger in your IDE? – JB Nizet Jan 2 at 12:50
feedback

1 Answer

up vote 1 down vote accepted

There are several ways to retrieve a Location for other locations in a source file.

E. g., Method has several operations for this:

  • allLineLocations() + 1 overload
  • locationsOfLine(int line) + several overloads

Also ReferenceType has operations for this. Just browse for the usage of Location.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.