Is there a posibility to break on every object reference in eclipse debugger ?
- by lbownik
Suppose I have a class
public classs MyClass {
private Set<String> set = new HashSet<String>();
//and many methods here
}
is there a possibility to make an eclipse debugger stop at every line where set member is used ?