@Getter(lazy=true) support for javac

This commit is contained in:
Roel Spilker
2010-11-11 01:58:48 +01:00
parent c8774389e7
commit 1c32333249
20 changed files with 602 additions and 85 deletions
@@ -0,0 +1,25 @@
class GetterLazyNative {
@lombok.Getter(lazy=true)
private final boolean booleanField = true;
@lombok.Getter(lazy=true)
private final byte byteField = 1;
@lombok.Getter(lazy=true)
private final short shortField = 1;
@lombok.Getter(lazy=true)
private final int intField = 1;
@lombok.Getter(lazy=true)
private final long longField = 1;
@lombok.Getter(lazy=true)
private final float floatField = 1.0f;
@lombok.Getter(lazy=true)
private final double doubleField = 1.0;
@lombok.Getter(lazy=true)
private final char charField = '1';
}