1 2 3 4 5 6 7 8 9 10 11 12
import lombok.Getter; public class CommentsInterspersed { private int x; private @Getter String test = "foo"; public CommentsInterspersed() { super(); } public native void gwtTest(); public @java.lang.SuppressWarnings("all") String getTest() { return this.test; } }