Skip to content

Commit

Permalink
Feat: Added package-info files
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyah committed May 11, 2026
1 parent 1dc26cb commit 589f60a
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Contains classes that control certain aspects of the application,
* such as the
* {@link edu.ntnu.idi.idatt2003.g40.mappe.controller.PlayerStatusController}.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.controller;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* Contains classes giving a high level control of the application,
* such as {@link edu.ntnu.idi.idatt2003.g40.mappe.engine.Exchange}.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.engine;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* Contains classes representing data in the application,
* such as shares, stocks and transactions.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.model;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* Contains classes providing a flexible event system that follows
* the publisher/subscriber model.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.service.event;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* Contains classes providing modular functionality to the application,
* such as the {@link edu.ntnu.idi.idatt2003.g40.mappe.service.FileConverter}.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.service;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Package containing utility enums and classes.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.utils;
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Contains classes used for displaying views in the javafx framework,
* where a view can be considered an arrangement of
* UI elements, including their functionality and styling.
* */
package edu.ntnu.idi.idatt2003.g40.mappe.view;

0 comments on commit 589f60a

Please sign in to comment.