blob: 1c0179c09a7aa9c74963b517528771bc5d2383b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
public class NonNullWithAlternateException {
@lombok.NonNull
private String test;
public void testMethod(@lombok.NonNull String arg) {
if (arg == null) {
throw new java.lang.IllegalArgumentException("arg is null");
}
System.out.println(arg);
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
@lombok.Generated
public void setTest(@lombok.NonNull final String test) {
if (test == null) {
throw new java.lang.IllegalArgumentException("test is null");
}
this.test = test;
}
}
|