New feature: FieldDefaults can now be configured to apply to _every_ file, regardless of annotations.

This commit is contained in:
Reinier Zwitserloot
2015-10-06 00:25:32 +02:00
parent b4d69f5cb8
commit 9d8c4e4099
14 changed files with 219 additions and 61 deletions
@@ -0,0 +1,7 @@
@lombok.RequiredArgsConstructor class FieldDefaultsViaConfigAndRequiredArgsConstructor {
final int x;
public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") FieldDefaultsViaConfigAndRequiredArgsConstructor(final int x) {
super();
this.x = x;
}
}