summaryrefslogtreecommitdiff
path: root/src/com.example.portfolio2/com/example/portfolio2/UI.java
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-04-30 22:21:28 +0200
committerJonas Smedegaard <dr@jones.dk>2025-04-30 22:23:08 +0200
commitb591061ec982ea087488afe39ce55fff6fa4bfa4 (patch)
treeaa6c1351e5648a6438f440829551dcb8f513bf99 /src/com.example.portfolio2/com/example/portfolio2/UI.java
parent714b07ea2012a880e0bee2ec6e090324500fa06a (diff)
merge project portfolio2 into bachelorizer, except class myDB
Diffstat (limited to 'src/com.example.portfolio2/com/example/portfolio2/UI.java')
-rw-r--r--src/com.example.portfolio2/com/example/portfolio2/UI.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/com.example.portfolio2/com/example/portfolio2/UI.java b/src/com.example.portfolio2/com/example/portfolio2/UI.java
deleted file mode 100644
index a70bf8e..0000000
--- a/src/com.example.portfolio2/com/example/portfolio2/UI.java
+++ /dev/null
@@ -1,38 +0,0 @@
-// SPDX-FileCopyrightText: 2025 Jonas Smedegaard <dr@jones.dk>
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-package com.example.portfolio2;
-
-/// Bachelorizer - reference user interface model
-public abstract class UI {
-
- /// Default constructor
- // (declared explicitly only to silence javadoc)
- public UI() { }
-
- /// structural sections of user interface
- public enum Section {
-
- /// main programme
- PROGRAM("Program"),
-
- /// first subject module
- SUBJECT1("Subject 1"),
-
- /// second subject module
- SUBJECT2("Subject 2"),
-
- /// elective courses
- ELECTIVE("Elective");
-
- /// text label
- final String label;
-
- /// instantiation
- ///
- /// @param label text label
- Section(final String label) {
- this.label = label;
- }
- }
-}