I am trying to track a change of a value using watchpoint in a Java program in Eclipse debugger. The class hierarchy is pretty complex and the value I am tracking is wrapped in
It's pretty disgusting and probably slow, but you can use
Thread.currentThread().getStackTrace()[2].getClassName().contains("A")
as your breakpoint condition.
Based on this bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=72961 I don't think Eclipse will support it directly