aboutsummaryrefslogtreecommitdiff
path: root/website2/usageExamples/GetterSetterExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'website2/usageExamples/GetterSetterExample_post.jpage')
-rw-r--r--website2/usageExamples/GetterSetterExample_post.jpage42
1 files changed, 0 insertions, 42 deletions
diff --git a/website2/usageExamples/GetterSetterExample_post.jpage b/website2/usageExamples/GetterSetterExample_post.jpage
deleted file mode 100644
index 241a3a4e..00000000
--- a/website2/usageExamples/GetterSetterExample_post.jpage
+++ /dev/null
@@ -1,42 +0,0 @@
-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;
- }
-}