lishunli / projectlombok

Automatically exported from code.google.com/p/projectlombok
0 stars 0 forks source link

@Getter @Setter don't work when annotating the class, only when annotating each field (GWT) #548

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When using 

    @Getter @Setter
    public class MyModel {
      public Integer uid;
      //...
   }

Eclipse sees all the getters/setters in the outline, but when I use gwt 
compile, the compilation fails with errors to the effect that the g/setters 
don't exist. If I instead annotate each individual field, then the compile is 
successful.

Original issue reported on code.google.com by gideon.f...@gmail.com on 23 Jul 2013 at 8:50