Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 487 Bytes

tasks.md

File metadata and controls

10 lines (7 loc) · 487 Bytes

Task 1

In src/main/java, using the default package, create a public final class called MyFirstImmutableEntity.

Task 2

In MyFirstImmutableEntity, create a private final field of type int. Please name it myFirstImmutableField. At the same time, please create a constructor which accepts an int value and assigns it to myFirstImmutableField.

Task 3

Next, create a getter method for myFirstImmutableField, called 'getMyFirstImmutableField', which returns this field.