forked from nus-cs2103-AY1718S2/addressbook-level3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
39 lines (29 loc) · 868 Bytes
/
Main.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
36
37
package seedu.addressbook;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.stage.Stage;
import seedu.addressbook.logic.Logic;
import seedu.addressbook.ui.Gui;
import seedu.addressbook.ui.Stoppable;
/**
* Main entry point to the application.
*/
public class Main extends Application implements Stoppable{
/** Version info of the program. */
public static final String VERSION = "AddressBook Level 3 - Version 1.0";
private Gui gui;
@Override
public void start(Stage primaryStage) throws Exception{
gui = new Gui(new Logic(), VERSION);
gui.start(primaryStage, this);
}
@Override
public void stop() throws Exception {
super.stop();
Platform.exit();
System.exit(0);
}
public static void main(String[] args) {
launch(args);
}
}