Lab 04

Library Lombok, java record

Library Lombok

In project  lab 1 , lab 2, lab 3

  • Add a dependency on the Lombok library to pom.xml. use scope provided.
    Add the maven-compiler-plugin annotation processor to pom.xml:
                    <annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
  • Add requires static lombok; to module-info.java
  • In the lab.Setting and lab.data.Score classes, use annotations from the Lombok library to simplify the classes.

Equals a Hashcode

Create a record that will be used to store information about the time and position of the downing of each Ufo (Monster, LochNess). Store the record of each Ufo's (Monster's, LochNess's) destruction in a collection.

After closing the window, print the collection.