-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPage.java
35 lines (30 loc) · 855 Bytes
/
Page.java
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
package databaser.ui;
/**
* Enum of all pages in the application that a user can navigate to.
*/
public enum Page {
APPARATER("/Apparater.fxml", "Apparater"),
DAGBOK("/Dagbok.fxml", "Dagbok"),
MAIN_MENU("/MainMenu.fxml", "Hjem"),
ØKT("/Økt.fxml", "Økt"),
ØVELSER("/Øvelser.fxml", "Øvelser"),
INSTILLINGER("/Instillinger.fxml", "Instillinger");
private final String fxmlPath;
private final String title;
/**
* Create a new page.
*
* @param fxmlFile filename of {@code .fxml} file.
* @param title Title for the page.
*/
Page(String fxmlFile, String title) {
this.fxmlPath = fxmlFile;
this.title = TrainingApp.appName + " - " + title;
}
public String fxmlPath() {
return fxmlPath;
}
public String title() {
return title;
}
}