From 94f7348c379f16036e67dce1ad94be274fc84ec8 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Thu, 1 May 2025 02:15:59 +0200 Subject: add/update build and zip generation routines --- src/portfolio1/ElectiveCourse.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/portfolio1/ElectiveCourse.java (limited to 'src/portfolio1/ElectiveCourse.java') diff --git a/src/portfolio1/ElectiveCourse.java b/src/portfolio1/ElectiveCourse.java new file mode 100644 index 0000000..6b23c84 --- /dev/null +++ b/src/portfolio1/ElectiveCourse.java @@ -0,0 +1,8 @@ +public class ElectiveCourse extends Course { + public ElectiveCourse(int ects, String name) { + super(ects, name); + } + public String toString() { + return "Elective " + super.toString(); + } +} \ No newline at end of file -- cgit v1.2.3