summaryrefslogtreecommitdiff
path: root/src/com.example.portfolio2/com/example/portfolio2/GUI.java
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-04-29 23:14:36 +0200
committerJonas Smedegaard <dr@jones.dk>2025-04-29 23:17:24 +0200
commit97d75aa78e658f9fe398827fb7cba7aa5bc31a6f (patch)
tree749b703269d4b8b589afdf5e181e96b04c6d3660 /src/com.example.portfolio2/com/example/portfolio2/GUI.java
parent6b6b45aca8f1a7770f2547a46bc1855bfb4ca9a7 (diff)
add track UI sections in new model class UI via subclass GUI (not as strings in class Window)
Diffstat (limited to 'src/com.example.portfolio2/com/example/portfolio2/GUI.java')
-rw-r--r--src/com.example.portfolio2/com/example/portfolio2/GUI.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/com.example.portfolio2/com/example/portfolio2/GUI.java b/src/com.example.portfolio2/com/example/portfolio2/GUI.java
new file mode 100644
index 0000000..e1f8fb3
--- /dev/null
+++ b/src/com.example.portfolio2/com/example/portfolio2/GUI.java
@@ -0,0 +1,17 @@
+// SPDX-FileCopyrightText: 2025 Jonas Smedegaard <dr@jones.dk>
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package com.example.portfolio2;
+
+import java.util.ArrayList;
+
+/// Bachelorizer - graphical user interface model
+public class GUI extends UI {
+
+ /// Default constructor
+ // (declared explicitly only to silence javadoc)
+ public GUI() { }
+
+ // TODO: extend with sections specific to graphical interface,
+ // e.g. widgets like statusbar or menu.
+}