mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 08:19:15 +00:00
18 lines
616 B
Java
18 lines
616 B
Java
public class NonNullWithAssertion {
|
|
private @lombok.NonNull @lombok.Setter String test;
|
|
public NonNullWithAssertion() {
|
|
super();
|
|
}
|
|
public void testMethod(@lombok.NonNull String arg) {
|
|
assert (arg != null): "arg is marked non-null but is null";
|
|
System.out.println(arg);
|
|
}
|
|
public void testMethodWithIf(@lombok.NonNull String arg) {
|
|
if ((arg == null))
|
|
throw new NullPointerException("Oops");
|
|
}
|
|
public @java.lang.SuppressWarnings("all") void setTest(final @lombok.NonNull String test) {
|
|
assert (test != null): "test is marked non-null but is null";
|
|
this.test = test;
|
|
}
|
|
} |