Project Features: • New Doctor Registration • Patients Information • Doctors Information • Prescriptions • Add New Medicine • Add New Patient • Edit Doctors Info • Add new prescriptions • Interactive UI • Settings • Server Connection • Interact with Database
Used Java Modules: • Variables, operators • Conditional Statements • Loops, Switches • Enumerators • Classes, Objects & Methods • Exception Handling • Arrays & Arraylists • Java SQL Connections • Networking Socket
JavaFX Java libraries:
- PDFJET(EXTERNAL)
- JAVA SQL (EXTERNAL)
- JAVA NETWORKING
- JAVA I/O
- JAVAFX
Database: MySQL database used to store essential data. The database has 4 data tables. doctor: Stores the login information and other details of a Doctor. patient: Stores the Patient information. prescription: Stores Prescription Information according doctors and patients. medicine: Stores Medicine information.
Server: Server class creates a server socket and when a client join it creates a new thread and sent socket as parameter.
Client: This class has some methods for Create New Patient Client Thread. It takes required parameters and updates the database’s information by executing the update.
Main: This class is the main class where all the methods and stage start up. We implemented javaFX stages to boot up the javaFX application in this class.
LoginController: This class has the necessary methods and variables to make someone to Register after providing some information and from this class A doctor or A patient can both login to the system.
Dashboard: All the user interface is controlled by this class. It launches Dashboard fxml file according to the user actions. Dashboard class is the controller of Dashboard.fxml file.
P_Dashboard: All the Patient interface is controlled by this class. This class is the controller of P_Dashboard.fxml file. When a user click any icon, program set a new fxml file on the View area and set the top title according to the new fxml.
Prescription: This class made for just get and set the data from Precription class to store data into an observable.Arraylist().
Patient: This class made for just get and set the data from Precription class to store data into an observable.Arraylist().
Patient_info: This class made for just get and set the data from Precription class to store data into an observable.Arraylist().