blob: 552c5c2da71db4717984f644eb6bbc866c58ae21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix = {"p", "_"}) class ConstructorsWithAccessors {
int plower;
int pUpper;
int _huh;
int __huh2;
public @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;
}
}
@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix = {"p", "_"}) class ConstructorsWithAccessorsNonNull {
@lombok.NonNull Integer plower;
@lombok.NonNull Integer pUpper;
@lombok.NonNull Integer _huh;
final @lombok.NonNull Integer __huh2;
public @java.lang.SuppressWarnings("all") ConstructorsWithAccessorsNonNull(final @lombok.NonNull Integer plower, final @lombok.NonNull Integer upper, final @lombok.NonNull Integer huh, final @lombok.NonNull Integer _huh2) {
super();
if ((plower == null))
{
throw new java.lang.NullPointerException("plower is marked non-null but is null");
}
if ((upper == null))
{
throw new java.lang.NullPointerException("upper is marked non-null but is null");
}
if ((huh == null))
{
throw new java.lang.NullPointerException("huh is marked non-null but is null");
}
if ((_huh2 == null))
{
throw new java.lang.NullPointerException("_huh2 is marked non-null but is null");
}
this.plower = plower;
this.pUpper = upper;
this._huh = huh;
this.__huh2 = _huh2;
}
}
|