Is there a posibility to break on every object reference in eclipse debugger ?
Posted
by lbownik
on Stack Overflow
See other posts from Stack Overflow
or by lbownik
Published on 2009-01-13T11:03:38Z
Indexed on
2010/05/14
19:54 UTC
Read the original article
Hit count: 164
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 ?
© Stack Overflow or respective owner