mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-25 20:01:38 +00:00
27 lines
605 B
Plaintext
27 lines
605 B
Plaintext
import lombok.AccessLevel;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
public class GetterSetterExample {
|
|
/**
|
|
* Age of the person. Water is wet.
|
|
*
|
|
* @param age New value for this person's age. Sky is blue.
|
|
* @return The current value of this person's age. Circles are round.
|
|
*/
|
|
@Getter @Setter private int age = 10;
|
|
|
|
/**
|
|
* Name of the person.
|
|
* -- SETTER --
|
|
* Changes the name of this person.
|
|
*
|
|
* @param name The new value.
|
|
*/
|
|
@Setter(AccessLevel.PROTECTED) private String name;
|
|
|
|
@Override public String toString() {
|
|
return String.format("%s (age: %d)", name, age);
|
|
}
|
|
}
|