blob: e1f8fb3b181d939aaf7c33eb72f7e372f442af3d (
plain)
- // 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.
- }
|