예제 #1
0
 private void onEditButtonClick() {
   Student student = getSelectedIndex("Edit");
   if (student == null) {
     return;
   }
   AddStudentWindow addStudentWindow = new AddStudentWindow(student);
   MainWindow.runWindow(addStudentWindow);
   setStudentsComboBox();
 }
예제 #2
0
 private void onAddButtonClick() {
   AddStudentWindow addStudentWindow = new AddStudentWindow();
   MainWindow.runWindow(addStudentWindow);
   setStudentsComboBox();
 }