The great rename: the old ‘website’ is now ‘website-old’, and ‘website2’ is now ‘website’.

This commit is contained in:
Reinier Zwitserloot
2017-05-29 21:02:54 +02:00
parent 72fd50b9f1
commit 8b7a7cbc81
185 changed files with 25 additions and 25 deletions
@@ -0,0 +1,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;
}
}