From now on it is possible to specify annotations to be placed on the method

or the parameter of the generated getter/setter methods.
This commit is contained in:
Roel Spilker
2010-11-10 01:44:04 +01:00
parent 46d471e9c3
commit fe7f0db2fc
33 changed files with 634 additions and 108 deletions
@@ -0,0 +1,15 @@
import lombok.Getter;
class GetterOnMethod {
@lombok.Getter(onMethod=@Deprecated) int i;
@lombok.Getter(onMethod={@java.lang.Deprecated}) int j;
}
@lombok.Getter(onMethod=@Deprecated)
class GetterOnClassOnMethod {
int i;
int j;
}
@lombok.Getter(onMethod=@Deprecated)
class GetterOnClassAndOnAField {
int i;
@lombok.Getter(onMethod={@java.lang.Deprecated}) int j;
}