Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Value tracking in Eclipse

Do Eclipse's Java tools have any equivalent (built-in or plugin) to the Value Tracking inspection in ReSharper? This would be similar to a Call Hierarchy, but tracks all previous value assignments and argument passes for a particular variable.

To clarify, I'm looking for a tool that uses static analysis to trace the origin of a value, within the IDE; this is not debugging at runtime.

like image 880
kpozin Avatar asked Mar 14 '11 15:03

kpozin


1 Answers

Use the debugger mode in eclipse is very powerful. (Add watches!)

like image 144
Nook Avatar answered Oct 19 '22 23:10

Nook