blob: 43c0ea66d294eeff71dbc3942ea52edca926de90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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")
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;
}
}
|