summaryrefslogtreecommitdiff
path: root/src/model/Course.java
diff options
context:
space:
mode:
authorWillemDalton <willemhdalton@gmail.com>2025-10-02 08:55:33 -0400
committerWillemDalton <willemhdalton@gmail.com>2025-10-02 08:55:33 -0400
commite218e35f333f8a30d213c7d3eebeb6f5f6bbcea3 (patch)
treeafc16118dd13e4ab089a85df90be11a80b157fd2 /src/model/Course.java
parentc03d30761e74e27815e6b7639f9ff4ec4e5c185a (diff)
downloaddesignproject-design-6-e218e35f333f8a30d213c7d3eebeb6f5f6bbcea3.tar.gz
designproject-design-6-e218e35f333f8a30d213c7d3eebeb6f5f6bbcea3.tar.bz2
designproject-design-6-e218e35f333f8a30d213c7d3eebeb6f5f6bbcea3.zip
more progress on the strategy, unit testing
Diffstat (limited to 'src/model/Course.java')
-rw-r--r--src/model/Course.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/model/Course.java b/src/model/Course.java
deleted file mode 100644
index 5f8c43d..0000000
--- a/src/model/Course.java
+++ /dev/null
@@ -1,45 +0,0 @@
-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;
- }
-}