Exactly as I feared.
Line numbers are not going to match I'm afraid.
paul
Le 24-nov.-09 à 06:32, Asiri Rathnayake a écrit :
As I understood this is not a change to java syntax or
anything.
It's about
augmenting classes when they are compiled. So at source level they
do not
have any getXXX() or setXXX() methods but when compiled lombok does
it's
magic and add the methods. I think most of the IDEs use
compiled .class
files to determine what a class is capable of (rather than analysing
the
source code) but still, there will be a problem if you try to lookup
those
methods in the source file.
Am I correct? Anyone who has tried out lombok?