aboutsummaryrefslogtreecommitdiff
path: root/src/com.example.portfolio2/com/example/portfolio2/GUI.java
blob: e1f8fb3b181d939aaf7c33eb72f7e372f442af3d (plain)
  1. // SPDX-FileCopyrightText: 2025 Jonas Smedegaard <dr@jones.dk>
  2. // SPDX-License-Identifier: GPL-3.0-or-later
  3. package com.example.portfolio2;
  4. import java.util.ArrayList;
  5. /// Bachelorizer - graphical user interface model
  6. public class GUI extends UI {
  7. /// Default constructor
  8. // (declared explicitly only to silence javadoc)
  9. public GUI() { }
  10. // TODO: extend with sections specific to graphical interface,
  11. // e.g. widgets like statusbar or menu.
  12. }