Updated the read me file and also made a slight modification to the Flight summary fxml.

main
Sunguin Peng 9 years ago
parent bc0033fad9
commit 226cbbd0ce

@ -6,12 +6,15 @@ git clone https://eng-git.canterbury.ac.nz/fwy13/SENG202.git
Open your preferred IDE and then Import Maven Project.
Getting started:
If there is no data in the database, you can select a file to import using File -> Import <data> for which type of data you are choosing to import.
The application is shipped with all the example data files pre loaded into the database. If the user wants add more data
from a file then they can select a file to import using File -> Import <data> where data is the type of data you are
choosing to import. ie Airline, Airport, Route or Flight data.
This will automatically take you to the summary page for the type of data imported.
Also, all buttons will work without any data loaded except the tables will be empty.
Each page will also have buttons leading to other summary pages of different data types.
The raw data can add data by filling in the fields and pressing Add.
The raw data can also filter/search through the data by typing in the fields needed and pressing Go.
The raw data pages has the ability to add data by filling in the fields and pressing Add.
The raw data pages for Airline, Airport and Routes can also filter/search through the data by typing in the fields needed
and pressing Go.
The Analyse button in the raw data will take you to a graph if it has been implemented.
There is only one option currently in the Analysis tab, which calculates the distance between two airports in the database.

@ -13,12 +13,11 @@
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.shape.Rectangle?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<?import javafx.scene.web.WebView?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seng202.group9.GUI.FlightSummaryController">
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.60" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seng202.group9.GUI.FlightSummaryController">
<children>
<ScrollPane hbarPolicy="NEVER" prefHeight="800.0" prefWidth="800.0" vbarPolicy="NEVER">
<content>
@ -117,7 +116,7 @@
<children>
<Pane prefHeight="350.0" prefWidth="316.0">
<children>
<ListView layoutX="25.0" layoutY="16.0" prefHeight="318.0" prefWidth="266.0" />
<ListView layoutX="25.0" layoutY="76.0" prefHeight="258.0" prefWidth="266.0" />
</children>
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />

Loading…
Cancel
Save