aboutsummaryrefslogtreecommitdiff
path: root/src/portfolio1/ElectiveCourse.java
blob: 6b23c841323753a8eae6485010d37e43b82d26b2 (plain)
  1. public class ElectiveCourse extends Course {
  2. public ElectiveCourse(int ects, String name) {
  3. super(ects, name);
  4. }
  5. public String toString() {
  6. return "Elective " + super.toString();
  7. }
  8. }