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