diff options
author | Roel Spilker <r.spilker@gmail.com> | 2014-03-26 22:33:00 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2014-03-26 22:33:00 +0100 |
commit | d41ef4bf8370a16121d00146f905e866ac7e5a0b (patch) | |
tree | 614ca16c4187d7ed7adb50625230a80bdef4b68b /test/transform/resource/after-ecj/ConstructorsConfiguration.java | |
parent | 4d24542dac058fcd7c341f9d17c4e8170a8d83a2 (diff) | |
download | lombok-d41ef4bf8370a16121d00146f905e866ac7e5a0b.tar.gz lombok-d41ef4bf8370a16121d00146f905e866ac7e5a0b.tar.bz2 lombok-d41ef4bf8370a16121d00146f905e866ac7e5a0b.zip |
[i659] suppression of @ConstructorProperties should use config instead. Also modified all onX examples to use two underscores.
Diffstat (limited to 'test/transform/resource/after-ecj/ConstructorsConfiguration.java')
-rw-r--r-- | test/transform/resource/after-ecj/ConstructorsConfiguration.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/ConstructorsConfiguration.java b/test/transform/resource/after-ecj/ConstructorsConfiguration.java new file mode 100644 index 00000000..b55d3e03 --- /dev/null +++ b/test/transform/resource/after-ecj/ConstructorsConfiguration.java @@ -0,0 +1,14 @@ +@lombok.AllArgsConstructor class ConstructorsConfiguration { + int x; + public @java.lang.SuppressWarnings("all") ConstructorsConfiguration(final int x) { + super(); + this.x = x; + } +} +@lombok.AllArgsConstructor(suppressConstructorProperties = false) class ConstructorsConfigurationExplicit { + int x; + public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") ConstructorsConfigurationExplicit(final int x) { + super(); + this.x = x; + } +} |