-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJobSeekerMenuController.java
More file actions
53 lines (38 loc) · 1.17 KB
/
JobSeekerMenuController.java
File metadata and controls
53 lines (38 loc) · 1.17 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package jobinterviewpreparationsystem;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.Initializable;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.RadioButton;
import javafx.scene.control.ToggleGroup;
public class JobSeekerMenuController {
@FXML
private RadioButton Qb;
@FXML
private RadioButton Mi;
@FXML
private RadioButton Pf;
@FXML
private ToggleGroup toggleGroup;
@FXML
private void handleSubmitAction(ActionEvent event) {
if (Qb.isSelected()) {
JobInterviewPreparationSystem.showQBankScreen();
} else if (Mi.isSelected()) {
JobInterviewPreparationSystem.showMInterviewScreen();
} else if (Pf.isSelected()) {
JobInterviewPreparationSystem.showPFBScreen();
} else {
System.out.println("No action selected.");
}
}
@FXML
private void handleMockInterview(ActionEvent event) {
//showScreen("mockInterview.fxml", "Mock Interview");
}
@FXML
private void handlePerformenceFeedback(ActionEvent event) {
//showScreen("performenceFeedback.fxml", "Performence Feedback");
}
}