# Conflicts: # src/main/java/seng202/group9/GUI/MenuController.javamain
commit
9c594fd474
@ -1,2 +1,6 @@
|
|||||||
This is a Flight Application Data Analyser. It runs on Java and has dependencys JavaFX and Maven.
|
This is a Flight Application Data Analyser. It runs on Java and has dependencys JavaFX, SQLITE3 and Maven.
|
||||||
If you are using Eclipse as an IDE please follow the instructions on http://www.eclipse.org/efxclipse/install.html to add JavaFX Library.
|
If you are using Eclipse as an IDE please follow the instructions on http://www.eclipse.org/efxclipse/install.html to add JavaFX Library.
|
||||||
|
|
||||||
|
To Import this project:
|
||||||
|
git clone https://eng-git.canterbury.ac.nz/fwy13/SENG202.git
|
||||||
|
Open your preferred IDE and then Import Maven Project.
|
||||||
Binary file not shown.
@ -1,25 +0,0 @@
|
|||||||
package seng202.group9.GUI;
|
|
||||||
|
|
||||||
import javafx.fxml.FXMLLoader;
|
|
||||||
import javafx.scene.Parent;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Main Menu Bar for the program
|
|
||||||
* @author YaFedImYaEatIm
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class MainMenuBar{
|
|
||||||
|
|
||||||
final private String menuFXML = "menu.fxml";
|
|
||||||
|
|
||||||
public Parent getmenuBar(){
|
|
||||||
try{
|
|
||||||
Parent menuPane = FXMLLoader.load(getClass().getClassLoader().getResource(menuFXML));
|
|
||||||
return menuPane;
|
|
||||||
}catch (Exception e){
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in new issue