Skip to content
This repository has been archived by the owner on Nov 16, 2024. It is now read-only.

electron-shaders/sc2002_proj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SC2002 Project (HMS)

Introduction

This repository hosts the codebase of the HMS group assignment of SC2002 Object Oriented Design & Programming.

Setup Environment

If you want to try on this project, please refer to the following environment requirements we used during development:

  1. JDK 17.0.12
  2. VSCode
  3. VSCode Extension Pack for Java

The required initial data and third-party jar libraries are already included in this repository.

Project Structure

.
│  HMS.java                 // The entry point class
│  LICENSE
│  README.md
├─.github
├─.vscode
├─controller                // controller package
├─data                      // The initial data loaded into system
├─html                      // The JavaDoc auto-generated HTML files
├─lib                       // Third-party jar libraries
│  └─commons-csv-1.10.0
├─model                     // model package
├─observer                  // observer package
├─store                     // store package
└─view                      // view package

1. model package

Contains all information (entities / data) tracked by the application.

2. store package

Contains the backing stores for all models and handles the process of loading initial data from csv files to the application.

3. view package

Contains the UIs that interact with users and dispatches user's commands to controllers.

3. controller Package

Contains the XXXController classes that abstract the data management (tracking) operations from the user classes.

4. observer Package

A simple implementation of the observer design pattern which is primarily used in dispatching notifications.

5. HMS Class

The system (application) class where the main method resides.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •