mirror of
https://github.com/sabazadam/Se302.git
synced 2025-12-31 20:31:22 +00:00
Fixed default application in pom.xml, and missing method in ScheduleStudentController
This commit is contained in:
@@ -4,7 +4,6 @@ import javafx.beans.property.SimpleStringProperty;
|
||||
import javafx.collections.FXCollections;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.control.*;
|
||||
import javafx.util.Callback;
|
||||
import org.example.se302.model.Course;
|
||||
import org.example.se302.model.ScheduleConfiguration;
|
||||
import org.example.se302.model.Student;
|
||||
@@ -95,7 +94,7 @@ public class ScheduleStudentController {
|
||||
if (selected == null)
|
||||
return;
|
||||
|
||||
selectedStudentLabel.setText("Exam Schedule for: " + selected.getStudentId() + " (" + selected.getName() + ")");
|
||||
selectedStudentLabel.setText("Exam Schedule for: " + selected.getStudentId());
|
||||
|
||||
refreshTable(selected);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user