// SPDX-FileCopyrightText: 2025 Jonas Smedegaard // 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. }