I'm running Eclipse Helios (3.6) and was wondering if there is a nice plugin out there that will count the number of logical lines of code in a java source file. By logical, I mean
if (j > 6) {
j--;
}
In other words, 2 logical lines of code (2 statements) will be counted instead of 3 physical lines of code.