From b591061ec982ea087488afe39ce55fff6fa4bfa4 Mon Sep 17 00:00:00 2001
From: Jonas Smedegaard <dr@jones.dk>
Date: Wed, 30 Apr 2025 22:21:28 +0200
Subject: merge project portfolio2 into bachelorizer, except class myDB

---
 .../com/example/portfolio2/UI.java                 | 38 ----------------------
 1 file changed, 38 deletions(-)
 delete mode 100644 src/com.example.portfolio2/com/example/portfolio2/UI.java

(limited to 'src/com.example.portfolio2/com/example/portfolio2/UI.java')

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;
-		}
-	}
-}
-- 
cgit v1.2.3