aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/GetterSetterExample_pre.jpage
blob: 4183aa5daadcbc726bcb90cb51ea3db28b07a7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
	}
}