aboutsummaryrefslogtreecommitdiff
path: root/src/com.example.portfolio2/com/example/portfolio2/GUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com.example.portfolio2/com/example/portfolio2/GUI.java')
-rw-r--r--src/com.example.portfolio2/com/example/portfolio2/GUI.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/com.example.portfolio2/com/example/portfolio2/GUI.java b/src/com.example.portfolio2/com/example/portfolio2/GUI.java
deleted file mode 100644
index de05873..0000000
--- a/src/com.example.portfolio2/com/example/portfolio2/GUI.java
+++ /dev/null
@@ -1,48 +0,0 @@
-// SPDX-FileCopyrightText: 2025 Jonas Smedegaard <dr@jones.dk>
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-package com.example.portfolio2;
-
-/// Bachelorizer - graphical user interface model
-public class GUI extends UI {
-
- /// Default constructor
- // (declared explicitly only to silence javadoc)
- public GUI() { }
-
- /// structural sections of user interface
- public enum Section {
-
- /// main programme
- PROGRAM("Program", 0),
-
- /// first subject module
- SUBJECT1("Subject 1", 1),
-
- /// second subject module
- SUBJECT2("Subject 2", 2),
-
- /// elective courses
- ELECTIVE("Elective", 3);
-
- /// text label
- final String label;
-
- /// column position
- final int column;
-
- /// instantiation
- ///
- /// @param label text label
- /// @param column column position
- Section(final String label, final int column) {
- this.label = label;
- this.column = column;
- }
- }
-
-/* public static UI.Section asUISection () {
- return UI.Section.valueOf(this);
- }
-*/
-}