blob: b55d3e030a3936bb95a510701b06f045b63aca2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@lombok.AllArgsConstructor class ConstructorsConfiguration {
int x;
public @java.lang.SuppressWarnings("all") ConstructorsConfiguration(final int x) {
super();
this.x = x;
}
}
@lombok.AllArgsConstructor(suppressConstructorProperties = false) class ConstructorsConfigurationExplicit {
int x;
public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") ConstructorsConfigurationExplicit(final int x) {
super();
this.x = x;
}
}
|