mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
15 lines
433 B
Java
15 lines
433 B
Java
//version 8:
|
|
@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix={"p", "_"}) class ConstructorsWithAccessors {
|
|
int plower;
|
|
int pUpper;
|
|
int _huh;
|
|
int __huh2;
|
|
}
|
|
|
|
@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix={"p", "_"}) class ConstructorsWithAccessorsNonNull {
|
|
@lombok.NonNull Integer plower;
|
|
@lombok.NonNull Integer pUpper;
|
|
@lombok.NonNull Integer _huh;
|
|
@lombok.NonNull final Integer __huh2;
|
|
}
|