aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/DelegateWithDeprecated.java
blob: f7bd1e6d0435e86d8cbe774405f5c6c7cefbc5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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();
	}
}