diff options
author | Robbert Jan Grootjans <grootjans@gmail.com> | 2012-03-05 21:12:39 +0100 |
---|---|---|
committer | Robbert Jan Grootjans <grootjans@gmail.com> | 2012-03-05 21:12:39 +0100 |
commit | d39623693b779634ea8b25cdc9792bc1ca3c880e (patch) | |
tree | d2365f9d463b6a302854baae3738f745238b2938 /test/transform/resource/after-delombok | |
parent | f1e679471d5dfadcd983476bda0bca61c86dc71c (diff) | |
parent | 1ac79bf86b3a11f34ad7f154f1062541052b114d (diff) | |
download | lombok-d39623693b779634ea8b25cdc9792bc1ca3c880e.tar.gz lombok-d39623693b779634ea8b25cdc9792bc1ca3c880e.tar.bz2 lombok-d39623693b779634ea8b25cdc9792bc1ca3c880e.zip |
Merge branch 'master' of github.com:rzwitserloot/lombok
Conflicts:
doc/changelog.markdown
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/DelegateWithDeprecated.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/DelegateWithDeprecated.java b/test/transform/resource/after-delombok/DelegateWithDeprecated.java new file mode 100644 index 00000000..04e12160 --- /dev/null +++ b/test/transform/resource/after-delombok/DelegateWithDeprecated.java @@ -0,0 +1,24 @@ +class DelegateWithDeprecated { + private Bar bar; + private interface Bar { + @Deprecated + void deprecatedAnnotation(); + /** @deprecated */ + void deprecatedComment(); + void notDeprecated(); + } + @java.lang.Deprecated + @java.lang.SuppressWarnings("all") + public void deprecatedAnnotation() { + this.bar.deprecatedAnnotation(); + } + @java.lang.Deprecated + @java.lang.SuppressWarnings("all") + public void deprecatedComment() { + this.bar.deprecatedComment(); + } + @java.lang.SuppressWarnings("all") + public void notDeprecated() { + this.bar.notDeprecated(); + } +}
\ No newline at end of file |