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