├── .gitattributes ├── README.md ├── UniversitiyManagementSystem ├── build.xml ├── build │ ├── built-jar.properties │ └── classes │ │ ├── Design │ │ ├── LoginForm.css │ │ └── MainForm.css │ │ ├── Student_Directory │ │ ├── 20230007.jpg │ │ ├── 20230008.jpg │ │ ├── 20230009.jpg │ │ ├── 20230010.jpg │ │ ├── 20230011.jpg │ │ ├── 20230012.jpg │ │ ├── 20230013.jpg │ │ └── 20230014.jpg │ │ ├── Teacher_Directory │ │ ├── TID-4.jpg │ │ ├── TID-5.jpg │ │ └── TID-6.jpg │ │ └── universitiymanagementsystem │ │ ├── AddStudent.fxml │ │ ├── AddStudentController.class │ │ ├── AdminMainForm.fxml │ │ ├── AdminMainFormController.class │ │ ├── AlertMessage.class │ │ ├── CourseData.class │ │ ├── DataStudentHandle.class │ │ ├── DataSubjectHandle.class │ │ ├── Database.class │ │ ├── FXMLDocument.fxml │ │ ├── FXMLDocumentController.class │ │ ├── ListData.class │ │ ├── SalaryData.class │ │ ├── StudentData.class │ │ ├── StudentMainForm.fxml │ │ ├── StudentMainFormController.class │ │ ├── SubjectData.class │ │ ├── TeacherData.class │ │ ├── TeacherMainForm.fxml │ │ ├── TeacherMainFormController.class │ │ └── UniversitiyManagementSystem.class ├── dist │ ├── UniversitiyManagementSystem.html │ ├── UniversitiyManagementSystem.jar │ ├── UniversitiyManagementSystem.jnlp │ ├── lib │ │ ├── fontawesomefx-8.2.jar │ │ ├── mysql-connector-java-5.1.48.jar │ │ └── ojdbc14-10.2.0.2.0.jar │ ├── run1591033287 │ │ ├── UniversitiyManagementSystem.html │ │ ├── UniversitiyManagementSystem.jar │ │ ├── UniversitiyManagementSystem.jnlp │ │ ├── lib │ │ │ ├── fontawesomefx-8.2.jar │ │ │ ├── mysql-connector-java-5.1.48.jar │ │ │ └── ojdbc14-10.2.0.2.0.jar │ │ └── web-files │ │ │ ├── dtjava.js │ │ │ ├── error.png │ │ │ ├── get_java.png │ │ │ ├── get_javafx.png │ │ │ ├── javafx-chrome.png │ │ │ ├── javafx-loading-100x100.gif │ │ │ ├── javafx-loading-25x25.gif │ │ │ ├── upgrade_java.png │ │ │ └── upgrade_javafx.png │ ├── run166042978 │ │ ├── UniversitiyManagementSystem.html │ │ ├── UniversitiyManagementSystem.jar │ │ ├── UniversitiyManagementSystem.jnlp │ │ ├── lib │ │ │ ├── fontawesomefx-8.2.jar │ │ │ ├── mysql-connector-java-5.1.48.jar │ │ │ └── ojdbc14-10.2.0.2.0.jar │ │ └── web-files │ │ │ ├── dtjava.js │ │ │ ├── error.png │ │ │ ├── get_java.png │ │ │ ├── get_javafx.png │ │ │ ├── javafx-chrome.png │ │ │ ├── javafx-loading-100x100.gif │ │ │ ├── javafx-loading-25x25.gif │ │ │ ├── upgrade_java.png │ │ │ └── upgrade_javafx.png │ ├── run1793906455 │ │ ├── UniversitiyManagementSystem.html │ │ ├── UniversitiyManagementSystem.jar │ │ ├── UniversitiyManagementSystem.jnlp │ │ ├── lib │ │ │ ├── fontawesomefx-8.2.jar │ │ │ ├── mysql-connector-java-5.1.48.jar │ │ │ └── ojdbc14-10.2.0.2.0.jar │ │ └── web-files │ │ │ ├── dtjava.js │ │ │ ├── error.png │ │ │ ├── get_java.png │ │ │ ├── get_javafx.png │ │ │ ├── javafx-chrome.png │ │ │ ├── javafx-loading-100x100.gif │ │ │ ├── javafx-loading-25x25.gif │ │ │ ├── upgrade_java.png │ │ │ └── upgrade_javafx.png │ └── web-files │ │ ├── dtjava.js │ │ ├── error.png │ │ ├── get_java.png │ │ ├── get_javafx.png │ │ ├── javafx-chrome.png │ │ ├── javafx-loading-100x100.gif │ │ ├── javafx-loading-25x25.gif │ │ ├── upgrade_java.png │ │ └── upgrade_javafx.png ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── configs │ │ ├── Run_as_WebStart.properties │ │ └── Run_in_Browser.properties │ ├── genfiles.properties │ ├── jfx-impl.xml │ ├── private │ │ ├── configs │ │ │ ├── Run_as_WebStart.properties │ │ │ └── Run_in_Browser.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── Design │ ├── LoginForm.css │ └── MainForm.css │ ├── Student_Directory │ ├── 20230007.jpg │ ├── 20230008.jpg │ ├── 20230009.jpg │ ├── 20230010.jpg │ ├── 20230011.jpg │ ├── 20230012.jpg │ ├── 20230013.jpg │ └── 20230014.jpg │ ├── Teacher_Directory │ ├── TID-4.jpg │ ├── TID-5.jpg │ └── TID-6.jpg │ └── universitiymanagementsystem │ ├── AddStudent.fxml │ ├── AddStudentController.java │ ├── AdminMainForm.fxml │ ├── AdminMainFormController.java │ ├── AlertMessage.java │ ├── CourseData.java │ ├── DataStudentHandle.java │ ├── DataSubjectHandle.java │ ├── Database.java │ ├── FXMLDocument.fxml │ ├── FXMLDocumentController.java │ ├── ListData.java │ ├── SalaryData.java │ ├── StudentData.java │ ├── StudentMainForm.fxml │ ├── StudentMainFormController.java │ ├── SubjectData.java │ ├── TeacherData.java │ ├── TeacherMainForm.fxml │ ├── TeacherMainFormController.java │ └── UniversitiyManagementSystem.java └── gitattributes /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # University Management System in JavaFX 2 | 3 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build.xml: -------------------------------------------------------------------------------- 1 | 2 | Builds, tests, and runs the project UniversitiyManagementSystem. 3 | 4 | 53 | 54 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/built-jar.properties: -------------------------------------------------------------------------------- 1 | #Wed, 09 Aug 2023 01:41:37 +0800 2 | 3 | 4 | C\:\\Users\\WINDOWS\ 10\\Documents\\NetBeansProjects\\UniversitiyManagementSystem= 5 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Design/LoginForm.css: -------------------------------------------------------------------------------- 1 | /* 2 | To change this license header, choose License Headers in Project Properties. 3 | To change this template file, choose Tools | Templates 4 | and open the template in the editor. 5 | */ 6 | /* 7 | Created on : 07 24, 23, 10:22:10 AM 8 | Author : WINDOWS 10 9 | */ 10 | 11 | .bg-form{ 12 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 13 | } 14 | 15 | .header{ 16 | -fx-border-color: linear-gradient(to bottom right, #0dbb78, #029d6f); 17 | -fx-border-width: 0 0 0 3px; 18 | -fx-padding: 0 0 0 5px; 19 | -fx-font-size: 20px; 20 | } 21 | 22 | .textfield{ 23 | -fx-background-color: transparent; 24 | -fx-padding: 0 0 0 25px; 25 | -fx-border-color: linear-gradient(to bottom right, #0abfa4, #00d079); 26 | -fx-border-width: .8px; 27 | -fx-text-fill: #fff; 28 | -fx-font-size: 14px; 29 | } 30 | .textfield:focused{ 31 | -fx-background-color: #fff; 32 | -fx-text-fill: #000; 33 | -fx-border-width: 1px; 34 | } 35 | 36 | .btn{ 37 | -fx-background-color: linear-gradient(to bottom right, #0abfa4, #00d079); 38 | -fx-font-family: Arial; 39 | -fx-font-size: 14px; 40 | -fx-cursor: hand; 41 | } 42 | .btn:hover{ 43 | -fx-background-color: #fff; 44 | } -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Design/MainForm.css: -------------------------------------------------------------------------------- 1 | /* 2 | To change this license header, choose License Headers in Project Properties. 3 | To change this template file, choose Tools | Templates 4 | and open the template in the editor. 5 | */ 6 | /* 7 | Created on : 07 24, 23, 3:16:35 PM 8 | Author : WINDOWS 10 9 | */ 10 | 11 | .close{ 12 | -fx-background-color: #ff2929; 13 | -fx-background-radius: 50px; 14 | -fx-cursor: hand; 15 | } 16 | .close:hover{ 17 | -fx-background-color: #000; 18 | } 19 | 20 | .white-bg{ 21 | -fx-background-color: #fff; 22 | } 23 | 24 | .radius{ 25 | -fx-background-radius: 8px; 26 | } 27 | 28 | .shadow{ 29 | -fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.5), 5,0,0,0); 30 | } 31 | 32 | .main-bg{ 33 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 34 | } 35 | 36 | .btn{ 37 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 38 | -fx-font-family: Arial; 39 | -fx-font-size: 14px; 40 | -fx-cursor: hand; 41 | -fx-text-fill: #fff; 42 | } 43 | .btn:hover{ 44 | -fx-background-color: linear-gradient(to bottom right, #0abfa4, #00d079); 45 | } 46 | 47 | .nav-btn{ 48 | -fx-background-color: transparent; 49 | -fx-cursor: hand; 50 | -fx-border-color: #fff; 51 | -fx-border-width: .8px; 52 | -fx-text-fill: #fff; 53 | } 54 | .nav-btn:hover{ 55 | -fx-background-color: #0abfa4; 56 | -fx-border-color: #0abfa4; 57 | } 58 | 59 | .table-view{ 60 | -fx-background-color: transparent; 61 | -fx-padding: 0; 62 | -fx-border-color: linear-gradient(to bottom right, #0d9642, #1a722c); 63 | -fx-border-radius: 8px; 64 | } 65 | .table-view .column-header-background{ 66 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 67 | -fx-background-radius: 8px 8px 0 0; 68 | -fx-background-insets: 0 0 0 0; 69 | } 70 | .table-view .column-header, .filter{ 71 | -fx-background-color: transparent; 72 | -fx-size: 40px; 73 | } 74 | .table-view .column-header .label{ 75 | 76 | -fx-text-fill: #fff; 77 | } -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230007.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230008.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230009.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230010.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230011.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230012.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230013.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Student_Directory/20230014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Student_Directory/20230014.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Teacher_Directory/TID-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Teacher_Directory/TID-4.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Teacher_Directory/TID-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Teacher_Directory/TID-5.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/Teacher_Directory/TID-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/Teacher_Directory/TID-6.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/AddStudent.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 31 | 58 | 59 | 60 |
61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 105 | 106 | 107 | 108 |
109 | 110 |
111 |
112 |
113 | 114 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/StudentMainFormController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/universitiymanagementsystem/StudentMainFormController.class -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/SubjectData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/universitiymanagementsystem/SubjectData.class -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/TeacherData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/universitiymanagementsystem/TeacherData.class -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/TeacherMainForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 29 | 34 | 39 | 46 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 66 | 67 | 68 | 69 |
70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 |
172 |
173 |
174 |
175 |
176 |
177 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/TeacherMainFormController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/universitiymanagementsystem/TeacherMainFormController.class -------------------------------------------------------------------------------- /UniversitiyManagementSystem/build/classes/universitiymanagementsystem/UniversitiyManagementSystem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/build/classes/universitiymanagementsystem/UniversitiyManagementSystem.class -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/UniversitiyManagementSystem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 38 | 39 | 40 |

Test page for UniversitiyManagementSystem

41 | Webstart: click to launch this app as webstart


42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/UniversitiyManagementSystem.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/UniversitiyManagementSystem.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/UniversitiyManagementSystem.jnlp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | UniversitiyManagementSystem 5 | WINDOWS 10 6 | null 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/lib/fontawesomefx-8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/lib/fontawesomefx-8.2.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/lib/mysql-connector-java-5.1.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/lib/mysql-connector-java-5.1.48.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/lib/ojdbc14-10.2.0.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/lib/ojdbc14-10.2.0.2.0.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/UniversitiyManagementSystem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 38 | 39 | 40 |

Test page for UniversitiyManagementSystem

41 | Webstart: click to launch this app as webstart


42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/UniversitiyManagementSystem.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/UniversitiyManagementSystem.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/UniversitiyManagementSystem.jnlp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | UniversitiyManagementSystem 5 | WINDOWS 10 6 | null 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/lib/fontawesomefx-8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/lib/fontawesomefx-8.2.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/lib/mysql-connector-java-5.1.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/lib/mysql-connector-java-5.1.48.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/lib/ojdbc14-10.2.0.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/lib/ojdbc14-10.2.0.2.0.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/error.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/get_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/get_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/upgrade_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1591033287/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1591033287/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/UniversitiyManagementSystem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 38 | 39 | 40 |

Test page for UniversitiyManagementSystem

41 | Webstart: click to launch this app as webstart


42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/UniversitiyManagementSystem.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/UniversitiyManagementSystem.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/UniversitiyManagementSystem.jnlp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | UniversitiyManagementSystem 5 | WINDOWS 10 6 | null 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/lib/fontawesomefx-8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/lib/fontawesomefx-8.2.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/lib/mysql-connector-java-5.1.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/lib/mysql-connector-java-5.1.48.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/lib/ojdbc14-10.2.0.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/lib/ojdbc14-10.2.0.2.0.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/error.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/get_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/get_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/upgrade_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run166042978/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run166042978/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/UniversitiyManagementSystem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 38 | 39 | 40 |

Test page for UniversitiyManagementSystem

41 | Webstart: click to launch this app as webstart


42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/UniversitiyManagementSystem.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/UniversitiyManagementSystem.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/UniversitiyManagementSystem.jnlp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | UniversitiyManagementSystem 5 | WINDOWS 10 6 | null 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/lib/fontawesomefx-8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/lib/fontawesomefx-8.2.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/lib/mysql-connector-java-5.1.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/lib/mysql-connector-java-5.1.48.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/lib/ojdbc14-10.2.0.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/lib/ojdbc14-10.2.0.2.0.jar -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/error.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/get_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/get_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/upgrade_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/run1793906455/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/run1793906455/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/error.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/get_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/get_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/upgrade_java.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/dist/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/dist/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /UniversitiyManagementSystem/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | $label=Run as WebStart 3 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | $label=Run in Browser 3 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=fa7fd700 2 | build.xml.script.CRC32=61f4b25d 3 | build.xml.stylesheet.CRC32=8064a381@1.80.1.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=fa7fd700 7 | nbproject/build-impl.xml.script.CRC32=d29ee3c1 8 | nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48 9 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/private/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | javafx.run.as=webstart 3 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/private/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | javafx.run.as=embedded 3 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | auxiliary.org-netbeans-modules-projectapi.issue214819_5f_fx_5f_enabled=true 2 | # No need to modify this property unless customizing JavaFX Ant task infrastructure 3 | endorsed.javafx.ant.classpath=. 4 | javafx.run.inbrowser= 5 | javafx.run.inbrowser.path=C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE 6 | user.properties.file=C:\\Users\\WINDOWS 10\\AppData\\Roaming\\NetBeans\\8.2\\build.properties 7 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/WINDOWS%2010/Documents/NetBeansProjects/UniversitiyManagementSystem/src/universitiymanagementsystem/ListData.java 7 | file:/C:/Users/WINDOWS%2010/Documents/NetBeansProjects/UniversitiyManagementSystem/src/universitiymanagementsystem/DataStudentHandle.java 8 | file:/C:/Users/WINDOWS%2010/Documents/NetBeansProjects/UniversitiyManagementSystem/src/universitiymanagementsystem/TeacherData.java 9 | file:/C:/Users/WINDOWS%2010/Documents/NetBeansProjects/UniversitiyManagementSystem/src/universitiymanagementsystem/TeacherMainFormController.java 10 | file:/C:/Users/WINDOWS%2010/Documents/NetBeansProjects/UniversitiyManagementSystem/src/universitiymanagementsystem/FXMLDocumentController.java 11 | file:/C:/Users/WINDOWS%2010/Documents/NetBeansProjects/UniversitiyManagementSystem/src/universitiymanagementsystem/StudentMainFormController.java 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | application.title=UniversitiyManagementSystem 8 | application.vendor=WINDOWS 10 9 | build.classes.dir=${build.dir}/classes 10 | build.classes.excludes=**/*.java,**/*.form 11 | # This directory is removed when the project is cleaned: 12 | build.dir=build 13 | build.generated.dir=${build.dir}/generated 14 | build.generated.sources.dir=${build.dir}/generated-sources 15 | # Only compile against the classpath explicitly listed here: 16 | build.sysclasspath=ignore 17 | build.test.classes.dir=${build.dir}/test/classes 18 | build.test.results.dir=${build.dir}/test/results 19 | compile.on.save=true 20 | compile.on.save.unsupported.javafx=true 21 | # Uncomment to specify the preferred debugger connection transport: 22 | #debug.transport=dt_socket 23 | debug.classpath=\ 24 | ${run.classpath} 25 | debug.test.classpath=\ 26 | ${run.test.classpath} 27 | # This directory is removed when the project is cleaned: 28 | dist.dir=dist 29 | dist.jar=${dist.dir}/UniversitiyManagementSystem.jar 30 | dist.javadoc.dir=${dist.dir}/javadoc 31 | endorsed.classpath= 32 | excludes= 33 | file.reference.fontawesomefx-8.2.jar=D:\\jar files\\New folder\\fontawesomefx-8.2.jar 34 | file.reference.mysql-connector-java-5.1.48.jar=D:\\jar files\\New folder\\mysql-connector-java-5.1.48.jar 35 | file.reference.ojdbc14-10.2.0.2.0.jar=D:\\jar files\\New folder\\ojdbc14-10.2.0.2.0.jar 36 | includes=** 37 | # Non-JavaFX jar file creation is deactivated in JavaFX 2.0+ projects 38 | jar.archive.disabled=true 39 | jar.compress=false 40 | javac.classpath=\ 41 | ${javafx.classpath.extension}:\ 42 | ${file.reference.fontawesomefx-8.2.jar}:\ 43 | ${file.reference.mysql-connector-java-5.1.48.jar}:\ 44 | ${file.reference.ojdbc14-10.2.0.2.0.jar} 45 | # Space-separated list of extra javac options 46 | javac.compilerargs= 47 | javac.deprecation=false 48 | javac.processorpath=\ 49 | ${javac.classpath} 50 | javac.source=1.8 51 | javac.target=1.8 52 | javac.test.classpath=\ 53 | ${javac.classpath}:\ 54 | ${build.classes.dir} 55 | javac.test.processorpath=\ 56 | ${javac.test.classpath} 57 | javadoc.additionalparam= 58 | javadoc.author=false 59 | javadoc.encoding=${source.encoding} 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | javafx.application.implementation.version=1.0 69 | javafx.binarycss=false 70 | javafx.classpath.extension=\ 71 | ${java.home}/lib/javaws.jar:\ 72 | ${java.home}/lib/deploy.jar:\ 73 | ${java.home}/lib/plugin.jar 74 | javafx.deploy.allowoffline=true 75 | # If true, application update mode is set to 'background', if false, update mode is set to 'eager' 76 | javafx.deploy.backgroundupdate=false 77 | javafx.deploy.embedJNLP=true 78 | javafx.deploy.includeDT=true 79 | # Set true to prevent creation of temporary copy of deployment artifacts before each run (disables concurrent runs) 80 | javafx.disable.concurrent.runs=false 81 | # Set true to enable multiple concurrent runs of the same WebStart or Run-in-Browser project 82 | javafx.enable.concurrent.external.runs=false 83 | # This is a JavaFX project 84 | javafx.enabled=true 85 | javafx.fallback.class=com.javafx.main.NoJavaFXFallback 86 | # Main class for JavaFX 87 | javafx.main.class=universitiymanagementsystem.UniversitiyManagementSystem 88 | javafx.preloader.class= 89 | # This project does not use Preloader 90 | javafx.preloader.enabled=false 91 | javafx.preloader.jar.filename= 92 | javafx.preloader.jar.path= 93 | javafx.preloader.project.path= 94 | javafx.preloader.type=none 95 | # Set true for GlassFish only. Rebases manifest classpaths of JARs in lib dir. Not usable with signed JARs. 96 | javafx.rebase.libs=false 97 | javafx.run.height=600 98 | javafx.run.width=800 99 | # Pre-JavaFX 2.0 WebStart is deactivated in JavaFX 2.0+ projects 100 | jnlp.enabled=false 101 | # Main class for Java launcher 102 | main.class=com.javafx.main.Main 103 | # For improved security specify narrower Codebase manifest attribute to prevent RIAs from being repurposed 104 | manifest.custom.codebase=* 105 | # Specify Permissions manifest attribute to override default (choices: sandbox, all-permissions) 106 | manifest.custom.permissions= 107 | manifest.file=manifest.mf 108 | meta.inf.dir=${src.dir}/META-INF 109 | platform.active=default_platform 110 | run.classpath=\ 111 | ${dist.jar}:\ 112 | ${javac.classpath}:\ 113 | ${build.classes.dir} 114 | run.test.classpath=\ 115 | ${javac.test.classpath}:\ 116 | ${build.test.classes.dir} 117 | source.encoding=UTF-8 118 | src.dir=src 119 | test.src.dir=test 120 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | UniversitiyManagementSystem 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Design/LoginForm.css: -------------------------------------------------------------------------------- 1 | /* 2 | To change this license header, choose License Headers in Project Properties. 3 | To change this template file, choose Tools | Templates 4 | and open the template in the editor. 5 | */ 6 | /* 7 | Created on : 07 24, 23, 10:22:10 AM 8 | Author : WINDOWS 10 9 | */ 10 | 11 | .bg-form{ 12 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 13 | } 14 | 15 | .header{ 16 | -fx-border-color: linear-gradient(to bottom right, #0dbb78, #029d6f); 17 | -fx-border-width: 0 0 0 3px; 18 | -fx-padding: 0 0 0 5px; 19 | -fx-font-size: 20px; 20 | } 21 | 22 | .textfield{ 23 | -fx-background-color: transparent; 24 | -fx-padding: 0 0 0 25px; 25 | -fx-border-color: linear-gradient(to bottom right, #0abfa4, #00d079); 26 | -fx-border-width: .8px; 27 | -fx-text-fill: #fff; 28 | -fx-font-size: 14px; 29 | } 30 | .textfield:focused{ 31 | -fx-background-color: #fff; 32 | -fx-text-fill: #000; 33 | -fx-border-width: 1px; 34 | } 35 | 36 | .btn{ 37 | -fx-background-color: linear-gradient(to bottom right, #0abfa4, #00d079); 38 | -fx-font-family: Arial; 39 | -fx-font-size: 14px; 40 | -fx-cursor: hand; 41 | } 42 | .btn:hover{ 43 | -fx-background-color: #fff; 44 | } -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Design/MainForm.css: -------------------------------------------------------------------------------- 1 | /* 2 | To change this license header, choose License Headers in Project Properties. 3 | To change this template file, choose Tools | Templates 4 | and open the template in the editor. 5 | */ 6 | /* 7 | Created on : 07 24, 23, 3:16:35 PM 8 | Author : WINDOWS 10 9 | */ 10 | 11 | .close{ 12 | -fx-background-color: #ff2929; 13 | -fx-background-radius: 50px; 14 | -fx-cursor: hand; 15 | } 16 | .close:hover{ 17 | -fx-background-color: #000; 18 | } 19 | 20 | .white-bg{ 21 | -fx-background-color: #fff; 22 | } 23 | 24 | .radius{ 25 | -fx-background-radius: 8px; 26 | } 27 | 28 | .shadow{ 29 | -fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.5), 5,0,0,0); 30 | } 31 | 32 | .main-bg{ 33 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 34 | } 35 | 36 | .btn{ 37 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 38 | -fx-font-family: Arial; 39 | -fx-font-size: 14px; 40 | -fx-cursor: hand; 41 | -fx-text-fill: #fff; 42 | } 43 | .btn:hover{ 44 | -fx-background-color: linear-gradient(to bottom right, #0abfa4, #00d079); 45 | } 46 | 47 | .nav-btn{ 48 | -fx-background-color: transparent; 49 | -fx-cursor: hand; 50 | -fx-border-color: #fff; 51 | -fx-border-width: .8px; 52 | -fx-text-fill: #fff; 53 | } 54 | .nav-btn:hover{ 55 | -fx-background-color: #0abfa4; 56 | -fx-border-color: #0abfa4; 57 | } 58 | 59 | .table-view{ 60 | -fx-background-color: transparent; 61 | -fx-padding: 0; 62 | -fx-border-color: linear-gradient(to bottom right, #0d9642, #1a722c); 63 | -fx-border-radius: 8px; 64 | } 65 | .table-view .column-header-background{ 66 | -fx-background-color: linear-gradient(to bottom right, #0d9642, #1a722c); 67 | -fx-background-radius: 8px 8px 0 0; 68 | -fx-background-insets: 0 0 0 0; 69 | } 70 | .table-view .column-header, .filter{ 71 | -fx-background-color: transparent; 72 | -fx-size: 40px; 73 | } 74 | .table-view .column-header .label{ 75 | 76 | -fx-text-fill: #fff; 77 | } -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230007.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230008.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230009.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230010.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230011.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230012.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230013.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Student_Directory/20230014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Student_Directory/20230014.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Teacher_Directory/TID-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Teacher_Directory/TID-4.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Teacher_Directory/TID-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Teacher_Directory/TID-5.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/Teacher_Directory/TID-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/University-Management-System-in-JavaFX/7a0e6685fb0d906320616df962823e1e1e3a4b57/UniversitiyManagementSystem/src/Teacher_Directory/TID-6.jpg -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/universitiymanagementsystem/AddStudent.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 31 | 58 | 59 | 60 |
61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 105 | 106 | 107 | 108 |
109 | 110 |
111 |
112 |
113 | 114 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/universitiymanagementsystem/StudentMainFormController.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package universitiymanagementsystem; 7 | 8 | import java.net.URL; 9 | import java.sql.Connection; 10 | import java.sql.PreparedStatement; 11 | import java.sql.ResultSet; 12 | import java.sql.Statement; 13 | import java.util.ResourceBundle; 14 | import javafx.collections.FXCollections; 15 | import javafx.collections.ObservableList; 16 | import javafx.fxml.FXML; 17 | import javafx.fxml.FXMLLoader; 18 | import javafx.fxml.Initializable; 19 | import javafx.scene.Parent; 20 | import javafx.scene.Scene; 21 | import javafx.scene.control.Button; 22 | import javafx.scene.control.Label; 23 | import javafx.scene.control.TableColumn; 24 | import javafx.scene.control.TableView; 25 | import javafx.scene.control.cell.PropertyValueFactory; 26 | import javafx.scene.image.Image; 27 | import javafx.scene.paint.ImagePattern; 28 | import javafx.scene.shape.Circle; 29 | import javafx.stage.Stage; 30 | 31 | /** 32 | * 33 | * @author WINDOWS 10 34 | */ 35 | public class StudentMainFormController implements Initializable { 36 | 37 | @FXML 38 | private Label student_id; 39 | 40 | @FXML 41 | private Button studentInformation_btn; 42 | 43 | @FXML 44 | private Button logout_btn; 45 | 46 | @FXML 47 | private TableView table_view; 48 | 49 | @FXML 50 | private TableColumn studentInfo_col_teacherID; 51 | 52 | @FXML 53 | private TableColumn studentInfo_col_name; 54 | 55 | @FXML 56 | private TableColumn studentInfo_col_gender; 57 | 58 | @FXML 59 | private TableColumn studentInfo_col_YE; 60 | 61 | @FXML 62 | private Circle circle_image; 63 | 64 | @FXML 65 | private Label teacher_id; 66 | 67 | @FXML 68 | private Label teacher_name; 69 | 70 | @FXML 71 | private Label teacher_gender; 72 | 73 | @FXML 74 | private Label teacher_date; 75 | 76 | private Connection connect; 77 | private PreparedStatement prepare; 78 | private Statement statement; 79 | private ResultSet result; 80 | 81 | AlertMessage alert = new AlertMessage(); 82 | 83 | public ObservableList teacherSetData() { 84 | 85 | ObservableList listData = FXCollections.observableArrayList(); 86 | 87 | String sql = "SELECT * FROM teacher_student WHERE stud_studentID = '" 88 | + student_id.getText() + "' AND date_delete IS NULL"; 89 | 90 | connect = Database.connectDB(); 91 | 92 | try { 93 | 94 | prepare = connect.prepareStatement(sql); 95 | result = prepare.executeQuery(); 96 | 97 | DataStudentHandle dsh; 98 | 99 | while (result.next()) { 100 | // DataStudentHandle(String teacherID, String studentID 101 | // , String name, String gender, Date dateInsert) 102 | 103 | dsh = new DataStudentHandle(result.getString("teacher_id"), 104 | result.getString("stud_studentID"), 105 | result.getString("stud_name"), 106 | result.getString("stud_gender"), 107 | result.getDate("date_insert")); 108 | listData.add(dsh); 109 | } 110 | 111 | } catch (Exception e) { 112 | e.printStackTrace(); 113 | } 114 | return listData; 115 | } 116 | 117 | private ObservableList teacherListData; 118 | 119 | public void teacherDisplayData() { 120 | teacherListData = teacherSetData(); 121 | 122 | studentInfo_col_teacherID.setCellValueFactory(new PropertyValueFactory<>("teacherID")); 123 | studentInfo_col_name.setCellValueFactory(new PropertyValueFactory<>("name")); 124 | studentInfo_col_gender.setCellValueFactory(new PropertyValueFactory<>("gender")); 125 | studentInfo_col_YE.setCellValueFactory(new PropertyValueFactory<>("dateInsert")); 126 | 127 | table_view.setItems(teacherListData); 128 | } 129 | 130 | private Image image; 131 | 132 | public void teacherSelectData() { 133 | DataStudentHandle dsh = table_view.getSelectionModel().getSelectedItem(); 134 | int num = table_view.getSelectionModel().getSelectedIndex(); 135 | 136 | if ((num - 1) < -1) { 137 | return; 138 | } 139 | 140 | String sql = "SELECT * FROM teacher WHERE teacher_id = '" 141 | + dsh.getTeacherID() + "'"; 142 | 143 | connect = Database.connectDB(); 144 | 145 | try { 146 | prepare = connect.prepareStatement(sql); 147 | result = prepare.executeQuery(); 148 | 149 | if (result.next()) { 150 | 151 | String path = "File:" + result.getString("image"); 152 | 153 | image = new Image(path, 164, 73, false, true); 154 | circle_image.setFill(new ImagePattern(image)); 155 | 156 | teacher_id.setText(result.getString("teacher_id")); 157 | teacher_name.setText(result.getString("full_name")); 158 | teacher_gender.setText(result.getString("gender")); 159 | teacher_date.setText(result.getString("date_insert")); 160 | } 161 | 162 | } catch (Exception e) { 163 | e.printStackTrace(); 164 | } 165 | 166 | } 167 | 168 | public void studentIDDisplay() { 169 | 170 | String sql = "SELECT * FROM users WHERE username = '" 171 | + ListData.student_username + "'"; 172 | 173 | connect = Database.connectDB(); 174 | 175 | try { 176 | prepare = connect.prepareStatement(sql); 177 | result = prepare.executeQuery(); 178 | 179 | if (result.next()) { 180 | student_id.setText(result.getString("student_id")); 181 | } 182 | 183 | } catch (Exception e) { 184 | e.printStackTrace(); 185 | } 186 | 187 | } 188 | 189 | public void logoutBtn() { 190 | 191 | try { 192 | if (alert.confirmMessage("Are you sure you want to logout?")) { 193 | Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml")); 194 | 195 | Stage stage = new Stage(); 196 | Scene scene = new Scene(root); 197 | 198 | stage.setScene(scene); 199 | stage.show(); 200 | 201 | logout_btn.getScene().getWindow().hide(); 202 | } 203 | } catch (Exception e) { 204 | e.printStackTrace(); 205 | } 206 | 207 | } 208 | 209 | @Override 210 | public void initialize(URL location, ResourceBundle resources) { 211 | 212 | teacherDisplayData(); 213 | studentIDDisplay(); 214 | 215 | } 216 | 217 | } 218 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/universitiymanagementsystem/SubjectData.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package universitiymanagementsystem; 7 | 8 | import java.sql.Date; 9 | 10 | /** 11 | * 12 | * @author WINDOWS 10 13 | */ 14 | public class SubjectData { 15 | 16 | private Integer id; 17 | private String subjectCode; 18 | private String subject; 19 | private String course; 20 | private Date dateInsert; 21 | private Date dateUpdate; 22 | private Date dateDelete; 23 | private String status; 24 | 25 | public SubjectData(Integer id, String subjectCode, String subject, String course, 26 | Date dateInsert, Date dateUpdate, Date dateDelete, String status) { 27 | this.id = id; 28 | this.subjectCode = subjectCode; 29 | this.subject = subject; 30 | this.course = course; 31 | this.dateInsert = dateInsert; 32 | this.dateUpdate = dateUpdate; 33 | this.dateDelete = dateDelete; 34 | this.status = status; 35 | } 36 | 37 | public Integer getId() { 38 | return id; 39 | } 40 | 41 | public String getSubjectCode() { 42 | return subjectCode; 43 | } 44 | 45 | public String getSubject() { 46 | return subject; 47 | } 48 | 49 | public String getCourse() { 50 | return course; 51 | } 52 | 53 | public Date getDateInsert() { 54 | return dateInsert; 55 | } 56 | 57 | public Date getDateUpdate() { 58 | return dateUpdate; 59 | } 60 | 61 | public Date getDateDelete() { 62 | return dateDelete; 63 | } 64 | 65 | public String getStatus() { 66 | return status; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/universitiymanagementsystem/TeacherData.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package universitiymanagementsystem; 7 | 8 | import java.sql.Date; 9 | 10 | /** 11 | * 12 | * @author WINDOWS 10 13 | */ 14 | public class TeacherData { 15 | 16 | private Integer id; 17 | private String teacherID; 18 | private String fullName; 19 | private String gender; 20 | private String yearExperience; 21 | private String experience; 22 | private String department; 23 | private Double salary; 24 | private String image; 25 | private Date dateInsert; 26 | private Date dateUpdate; 27 | private Date dateDelete; 28 | private String status; 29 | private String salaryStatus; 30 | 31 | public TeacherData(Integer id, String teacherID, String fullName, String gender, 32 | String yearExperience, String experience, String department, Double salary, 33 | String salaryStatus, 34 | String image, Date dateInsert, Date dateUpdate, Date dateDelete, String status) { 35 | this.id = id; 36 | this.teacherID = teacherID; 37 | this.fullName = fullName; 38 | this.gender = gender; 39 | this.yearExperience = yearExperience; 40 | this.experience = experience; 41 | this.department = department; 42 | this.salary = salary; 43 | this.salaryStatus = salaryStatus; 44 | this.image = image; 45 | this.dateInsert = dateInsert; 46 | this.dateUpdate = dateUpdate; 47 | this.dateDelete = dateDelete; 48 | this.status = status; 49 | } 50 | 51 | public TeacherData(Integer id, String teacherID, String fullName, 52 | String gender, Double salary, String salaryStatus, Date dateInsert, 53 | Date dateUpdate, String status) { 54 | this.id = id; 55 | this.teacherID = teacherID; 56 | this.fullName = fullName; 57 | this.gender = gender; 58 | this.salary = salary; 59 | this.salaryStatus = salaryStatus; 60 | this.dateInsert = dateInsert; 61 | this.dateUpdate = dateUpdate; 62 | this.status = status; 63 | } 64 | 65 | public TeacherData(Integer id, String teacherID, String fullName, 66 | String gender, String yearExperience, Date dateInsert) { 67 | this.id = id; 68 | this.teacherID = teacherID; 69 | this.fullName = fullName; 70 | this.gender = gender; 71 | this.yearExperience = yearExperience; 72 | this.dateInsert = dateInsert; 73 | } 74 | 75 | public String getSalaryStatus() { 76 | return salaryStatus; 77 | } 78 | 79 | public Integer getId() { 80 | return id; 81 | } 82 | 83 | public String getTeacherID() { 84 | return teacherID; 85 | } 86 | 87 | public String getFullName() { 88 | return fullName; 89 | } 90 | 91 | public String getGender() { 92 | return gender; 93 | } 94 | 95 | public String getYearExperience() { 96 | return yearExperience; 97 | } 98 | 99 | public String getExperience() { 100 | return experience; 101 | } 102 | 103 | public String getDepartment() { 104 | return department; 105 | } 106 | 107 | public Double getSalary() { 108 | return salary; 109 | } 110 | 111 | public String getImage() { 112 | return image; 113 | } 114 | 115 | public Date getDateInsert() { 116 | return dateInsert; 117 | } 118 | 119 | public Date getDateUpdate() { 120 | return dateUpdate; 121 | } 122 | 123 | public Date getDateDelete() { 124 | return dateDelete; 125 | } 126 | 127 | public String getStatus() { 128 | return status; 129 | } 130 | 131 | } 132 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/universitiymanagementsystem/TeacherMainForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 29 | 34 | 39 | 46 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 66 | 67 | 68 | 69 |
70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 |
172 |
173 |
174 |
175 |
176 |
177 | -------------------------------------------------------------------------------- /UniversitiyManagementSystem/src/universitiymanagementsystem/UniversitiyManagementSystem.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package universitiymanagementsystem; 7 | 8 | import javafx.application.Application; 9 | import javafx.fxml.FXMLLoader; 10 | import javafx.scene.Parent; 11 | import javafx.scene.Scene; 12 | import javafx.stage.Stage; 13 | 14 | /** 15 | * 16 | * @author WINDOWS 10 17 | */ 18 | public class UniversitiyManagementSystem extends Application { 19 | 20 | @Override 21 | public void start(Stage stage) throws Exception { 22 | Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml")); 23 | 24 | Scene scene = new Scene(root); 25 | 26 | stage.setTitle("University Management System"); 27 | 28 | stage.setScene(scene); 29 | stage.show(); 30 | } 31 | 32 | /** 33 | * @param args the command line arguments 34 | */ 35 | public static void main(String[] args) { 36 | launch(args); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- 1 | ## Unity ## 2 | 3 | *.cs diff=csharp text 4 | *.cginc text 5 | *.shader text 6 | 7 | *.mat merge=unityyamlmerge eol=lf 8 | *.anim merge=unityyamlmerge eol=lf 9 | *.unity merge=unityyamlmerge eol=lf 10 | *.prefab merge=unityyamlmerge eol=lf 11 | *.physicsMaterial2D merge=unityyamlmerge eol=lf 12 | *.physicMaterial merge=unityyamlmerge eol=lf 13 | *.asset merge=unityyamlmerge eol=lf 14 | *.meta merge=unityyamlmerge eol=lf 15 | *.controller merge=unityyamlmerge eol=lf 16 | 17 | 18 | ## git-lfs ## 19 | 20 | #Image 21 | *.jpg filter=lfs diff=lfs merge=lfs -text 22 | *.jpeg filter=lfs diff=lfs merge=lfs -text 23 | *.png filter=lfs diff=lfs merge=lfs -text 24 | *.gif filter=lfs diff=lfs merge=lfs -text 25 | *.psd filter=lfs diff=lfs merge=lfs -text 26 | *.ai filter=lfs diff=lfs merge=lfs -text 27 | *.tif filter=lfs diff=lfs merge=lfs -text 28 | 29 | #Audio 30 | *.mp3 filter=lfs diff=lfs merge=lfs -text 31 | *.wav filter=lfs diff=lfs merge=lfs -text 32 | *.ogg filter=lfs diff=lfs merge=lfs -text 33 | 34 | #Video 35 | *.mp4 filter=lfs diff=lfs merge=lfs -text 36 | *.mov filter=lfs diff=lfs merge=lfs -text 37 | 38 | #3D Object 39 | *.FBX filter=lfs diff=lfs merge=lfs -text 40 | *.fbx filter=lfs diff=lfs merge=lfs -text 41 | *.blend filter=lfs diff=lfs merge=lfs -text 42 | *.obj filter=lfs diff=lfs merge=lfs -text 43 | 44 | #ETC 45 | *.a filter=lfs diff=lfs merge=lfs -text 46 | *.exr filter=lfs diff=lfs merge=lfs -text 47 | *.tga filter=lfs diff=lfs merge=lfs -text 48 | *.pdf filter=lfs diff=lfs merge=lfs -text 49 | *.zip filter=lfs diff=lfs merge=lfs -text 50 | *.dll filter=lfs diff=lfs merge=lfs -text 51 | *.unitypackage filter=lfs diff=lfs merge=lfs -text 52 | *.aif filter=lfs diff=lfs merge=lfs -text 53 | *.ttf filter=lfs diff=lfs merge=lfs -text 54 | *.rns filter=lfs diff=lfs merge=lfs -text 55 | *.reason filter=lfs diff=lfs merge=lfs -text 56 | *.lxo filter=lfs diff=lfs merge=lfs -text 57 | *.bc filter=lfs diff=lfs merge=lfs -text --------------------------------------------------------------------------------