[configuration] Added the configuration keys lombok.ToString.doNotUseGetters and lombok.ToString.includeFieldNames

This commit is contained in:
Roel Spilker
2014-02-06 23:30:32 +01:00
parent 143143276d
commit e557413336
6 changed files with 115 additions and 7 deletions
@@ -0,0 +1,13 @@
//CONF: lombok.ToString.includeFieldNames = false
//CONF: lombok.ToString.doNotUseGetters = true
import lombok.ToString;
import lombok.Getter;
@ToString @Getter class ToStringConfiguration {
int x;
}
@ToString(includeFieldNames=true) class ToStringConfiguration2 {
int x;
}
@ToString(doNotUseGetters=false) @Getter class ToStringConfiguration3 {
int x;
}