diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-09-28 00:21:41 -0400 |
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-09-28 00:21:41 -0400 |
| commit | 42c080c022ddf8f3f3441923e67c150d7df33611 (patch) | |
| tree | c000d5e98d7b87e2daf5685496442f264731f4f2 /src/main/java/design/model/Course.java | |
| parent | 8a0096b0a9044d550d04d4355b67ba1495b8d5d3 (diff) | |
| download | designproject-design-6-42c080c022ddf8f3f3441923e67c150d7df33611.tar.gz designproject-design-6-42c080c022ddf8f3f3441923e67c150d7df33611.tar.bz2 designproject-design-6-42c080c022ddf8f3f3441923e67c150d7df33611.zip | |
Add basic classes for model and persistence interfaces
Diffstat (limited to '')
| -rw-r--r-- | src/main/java/design/model/Course.java | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/main/java/design/model/Course.java b/src/main/java/design/model/Course.java new file mode 100644 index 0000000..5f8c43d --- /dev/null +++ b/src/main/java/design/model/Course.java @@ -0,0 +1,45 @@ +package design.model; + +import java.util.List; + +public class Course { + private final String name; + private final int difficultyRating; + private final String location; + private final int holeCount; + private final int totalPar; + private final List<Hole> holes; + + public Course(String name, int difficultyRating, String location, int holeCount, int totalPar, List<Hole> holes) { + this.name = name; + this.difficultyRating = difficultyRating; + this.location = location; + this.holeCount = holeCount; + this.totalPar = totalPar; + this.holes = holes; + } + + public String getName() { + return name; + } + + public int getDifficultyRating() { + return difficultyRating; + } + + public String getLocation() { + return location; + } + + public int getHoleCount() { + return holeCount; + } + + public int getTotalPar() { + return totalPar; + } + + public List<Hole> getHoles() { + return holes; + } +} |
