aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/OnXJava7Style.java
blob: 7ebf65a39bbddb1fe2c92cfcfb060a74016d0f5d (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
27
28
29
30
31
32
33
34
35
36
37
38
//version :7
public class OnXJava7Style {
	@interface Foo {
		String value() default "";
	}
	@interface Bar {
		String stuff() default "";
	}
	String a;
	String b;
	String c;
	String d;
	String e;
	@Foo
	@java.lang.SuppressWarnings("all")
	public String getA() {
		return this.a;
	}
	@Foo
	@java.lang.SuppressWarnings("all")
	public void setB(final String b) {
		this.b = b;
	}
	@java.lang.SuppressWarnings("all")
	public void setC(@Foo("a") final String c) {
		this.c = c;
	}
	@java.lang.SuppressWarnings("all")
	public void setD(@Bar(stuff = "b") final String d) {
		this.d = d;
	}
	@Foo("c")
	@Bar(stuff = "d")
	@java.lang.SuppressWarnings("all")
	public String getE() {
		return this.e;
	}
}