khairahscorner / M025

Rental Property Management System

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

M025 Assignment

CSYM025 Project Assigment

JavaFX Application for a Rental property management system

What's Needed

  • Java
  • JavaFX
  • SceneBuilder
  • JUnit 5
  • import jar files to build path (javafx, itextpdf, javaxmail, activation)

System Features

  • Screenshot 2024-03-06 at 1 53 01 pm
  • Screenshot 2024-03-06 at 1 53 10 pm

Repo Structure

It contains the following files:

  1. Java files - main classes for the program
  2. FXML files
  3. Controller class files - files for configuring the FXML files
  4. .properties file - Java properties file
  5. .dat files - contains serialised class objects
  6. .pdf files - files generated from two different invoices
  7. images folder - sample images
/
|
├─ src/
│  │
│  ├─ assignment/          				# Package for main files
│  │  ├─ AdminList.java
│  │  ├─ AppStart.java					# Entry point of application/ class with main method
│  │  ├─ AppStartController.java		# Controller class for the entry point
│  │  │....
│  │  ├─ DataFormatter.java				# Interface
│  │  │....
│  │  ├─ Invoice.java					# Interface
│  │  │....
│  │  ├─ AppStart.fxml					# Starting UI for the app
│  │  │....
│  │  └─ styles.css						# CSS styling for the UIs
│  │
│  │
│  ├─ tests/                			# package for unit tests
│  │  ├─  data/
│  │  │  ├─  collaborators/
│  │  │  ├─  money/
│  │  │  ├─  subscriptions/
│  │  │  └─  users/          
│  │  │
│  │  └─  utilities/
│  │
│  └─ module-info.java
│
├─ images/                  			# random images folder
├─ activation-1.1.jar                			
├─ admins.dat                  			# .dat file containing serialised AdminList object
├─ allFiles.properties                  # Java properties file with file names
├─ customerList.csv                  	# file gotten from exporting customers as csv in the app
├─ itextpdf-5.5.13.jar
├─ javax.mail.jar
├─ ...
├─ README.md              # This file
├─ rentalInvoice.pdf			        # pdf file generated while renting a property
└─ tenancyEndInvoice.pdf

About

Rental Property Management System


Languages

Language:Java 98.7%Language:CSS 1.3%