aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/GetterSetterExample_post.jpage
blob: 241a3a4e959931c0398fca86927db83da46758dd (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public class GetterSetterExample {
	/**
	 * Age of the person. Water is wet.
	 */
	private int age = 10;

	/**
	 * Name of the person.
	 */
	private String name;
	
	@Override public String toString() {
		return String.format("%s (age: %d)", name, age);
	}
	
	/**
	 * Age of the person. Water is wet.
	 *
	 * @return The current value of this person's age. Circles are round.
	 */
	public int getAge() {
		return age;
	}
	
	/**
	 * Age of the person. Water is wet.
	 *
	 * @param age New value for this person's age. Sky is blue.
	 */
	public void setAge(int age) {
		this.age = age;
	}
	
	/**
	 * Changes the name of this person.
	 *
	 * @param name The new value.
	 */
	protected void setName(String name) {
		this.name = name;
	}
}