diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-04-30 22:21:28 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-04-30 22:23:08 +0200 |
commit | b591061ec982ea087488afe39ce55fff6fa4bfa4 (patch) | |
tree | aa6c1351e5648a6438f440829551dcb8f513bf99 /src/com.example.portfolio2/com/example/portfolio2/GUI.java | |
parent | 714b07ea2012a880e0bee2ec6e090324500fa06a (diff) |
merge project portfolio2 into bachelorizer, except class myDB
Diffstat (limited to 'src/com.example.portfolio2/com/example/portfolio2/GUI.java')
-rw-r--r-- | src/com.example.portfolio2/com/example/portfolio2/GUI.java | 48 |
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); - } -*/ -} |