|
@@ -5,8 +5,9 @@
|
5
|
5
|
# Part 1.1 - Create `Person` Class
|
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
|
|
- * `Person` should have a `getName()` method which returns the `Person` object's `name` variable.
|
9
|
|
- * `Person` should have a `setName()` method which sets the `Person` object's `name` variable.
|
|
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.
|
10
|
11
|
|
11
|
12
|
-
|
12
|
13
|
# Part 1.0 - Test `Person`
|