blob: b83c4cecac0f5f159278cfe725a61bc0a3f7e34a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class ConstructorsWithAccessors {
int plower;
int pUpper;
int _huh;
int __huh2;
@java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"})
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
@lombok.Generated
public ConstructorsWithAccessors(final int plower, final int upper, final int huh, final int _huh2) {
this.plower = plower;
this.pUpper = upper;
this._huh = huh;
this.__huh2 = _huh2;
}
}
|