This is a Java project from my early days as a Computer Science student
This programm was created for the fourth semester class Programming on the Internet and the World Wide Web and is a practise program for the final project of the class
A Java project which simulates an eclass application where users can sign up and sign in as admin, students or professors and can handle their grades and classessaving information into files.
- User class that contains basic characteristics of each category of users
- The characteristics are (username, name, surname, department, registration number etc.)
- Typical getters ans setters for all variables
- Typical constructor for the class Users
- Sub class Students that uses the class Users' characteristics and methods
- Sub class Professors
- Class Courses and Grades
- Class CreateUsers where main() method is, taht will create objects of type Users, Students, Professors and Secretaries
- Proper Exception handling for valid registartion number syntax
- Information saved inside txt files
- Implementing the basic User functionalities
- The comments to make the code understandable, are within the archives
- This project was written in Eclipse Java IDE
- This repository was created to show the variety of the work I did and experience I gained as a student