aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ConstructorsConfiguration.java
blob: 5bec3ae3ac2409d7c1c772ec2e13908b1ced65cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ConstructorsConfiguration {
	int x;
	@java.lang.SuppressWarnings("all")
	public ConstructorsConfiguration(final int x) {
		this.x = x;
	}
}
class ConstructorsConfigurationExplicit {
	int x;
	@java.beans.ConstructorProperties({"x"})
	@java.lang.SuppressWarnings("all")
	public ConstructorsConfigurationExplicit(final int x) {
		this.x = x;
	}
}