Skip to content

Zyx8890/sc2002_project

 
 

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

y2s1 sc2002 project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 91.1%
  • Java 6.3%
  • CSS 1.4%
  • JavaScript 1.2%