
Description
This is a project for my Object Oriented Programming course COP3003. It allows a user to record products and keeps a log of all items added to the database.
GUI and Backend

The FXML GUI was built with Gluon’s Scenebuilder. The controller code was written in Java.

Data was saved to an H2 SQL database. The template to communicate with the database can be found here: https://docs.oracle.com/javase/tutorial/jdbc/basics/connecting.html
Learning Outcomes
- Use of Enums, Interfaces, Abstract Classes, polymorphism
- Creating a GUI application using JavaFX
- Using Scene Builder to create the FXML file for the GUI
- Applying a CSS style sheet to a JavaFX application
- Creating and interacting with a database using JDBC driver
- Using String Builder
- Using Regular Expressions