blob: 0df8fbe14d7dcdb31a62143f3c9908b3e806da63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix = {"p", "_"}) class ConstructorsWithAccessors {
int plower;
int pUpper;
int _huh;
int __huh2;
public @java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"}) @java.lang.SuppressWarnings("all") ConstructorsWithAccessors(final int plower, final int upper, final int huh, final int _huh2) {
super();
this.plower = plower;
this.pUpper = upper;
this._huh = huh;
this.__huh2 = _huh2;
}
}
|