Files
Durai46 10fab5b77a Update WithExample_pre.jpage
updated NonNull check
2021-12-12 02:36:21 +01:00

14 lines
292 B
Plaintext

import lombok.AccessLevel;
import lombok.NonNull;
import lombok.With;
public class WithExample {
@With(AccessLevel.PROTECTED) @NonNull private final String name;
@With private final int age;
public WithExample(@NonNull String name, int age) {
this.name = name;
this.age = age;
}
}