|
@@ -6,8 +6,9 @@
|
6
|
6
|
* Create a `Person` class.
|
7
|
7
|
* `Person` constructor should have a parameter of type `String` which sets the `name` instance-variable to the respective value.
|
8
|
8
|
* The class should declare a `final` field named `id` of type `long`.
|
9
|
|
- * The class should define a `getName()` method which returns the `Person` object's `name` variable.
|
10
|
|
- * The class should define a `setName()` method which sets the `Person` object's `name` variable.
|
|
9
|
+ * The class should define a `getId()` method which returns the `Person` object's `id` field.
|
|
10
|
+ * The class should define a `getName()` method which returns the `Person` object's `name` field.
|
|
11
|
+ * The class should define a `setName()` method which sets the `Person` object's `name` field.
|
11
|
12
|
|
12
|
13
|
-
|
13
|
14
|
# Part 1.0 - Test `Person`
|