-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
JIMMY
committed
May 16, 2017
1 parent
cdf74e1
commit 18314f0
Showing
56 changed files
with
744 additions
and
2,341 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
7 changes: 0 additions & 7 deletions
7
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/MetroDeParis.fxml
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-345 Bytes
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/MetroDeParisController.class
Binary file not shown.
Binary file removed
BIN
-2.27 KB
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/dao/MetroDAO.class
Binary file not shown.
Binary file removed
BIN
-961 Bytes
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/dao/TestDAO.class
Binary file not shown.
Binary file removed
BIN
-1.78 KB
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/model/Fermata.class
Binary file not shown.
Binary file removed
BIN
-306 Bytes
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/model/Model.class
Binary file not shown.
Binary file removed
BIN
-745 Bytes
Lab09_MetroDeParis/bin/it/polito/tdp/metrodeparis/model/TestModel.class
Binary file not shown.
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
Lab09_MetroDeParis/src/it/polito/tdp/metrodeparis/MetroDeParis.fxml
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
Lab09_MetroDeParis/src/it/polito/tdp/metrodeparis/MetroDeParisController.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
Lab09_MetroDeParis/src/it/polito/tdp/metrodeparis/dao/MetroDAO.java
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
Lab09_MetroDeParis/src/it/polito/tdp/metrodeparis/dao/TestDAO.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
Lab09_MetroDeParis/src/it/polito/tdp/metrodeparis/model/Model.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
Lab09_MetroDeParis/src/it/polito/tdp/metrodeparis/model/TestModel.java
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Binary file not shown.
80 changes: 80 additions & 0 deletions
80
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/MetroDeParis.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.geometry.Insets?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.ComboBox?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.control.TextArea?> | ||
<?import javafx.scene.image.Image?> | ||
<?import javafx.scene.image.ImageView?> | ||
<?import javafx.scene.layout.BorderPane?> | ||
<?import javafx.scene.layout.HBox?> | ||
<?import javafx.scene.layout.VBox?> | ||
<?import javafx.scene.text.Font?> | ||
|
||
<BorderPane id="BorderPane" maxHeight="-1.0" maxWidth="-1.0" minHeight="-1.0" minWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="it.polito.tdp.metrodeparis.MetroDeParisController"> | ||
<center> | ||
<VBox prefHeight="-1.0" prefWidth="-1.0"> | ||
<children> | ||
<HBox alignment="CENTER" prefHeight="44.0" prefWidth="498.0"> | ||
<children> | ||
<ImageView fitHeight="87.0" fitWidth="108.0" pickOnBounds="true" preserveRatio="true"> | ||
<image> | ||
<Image url="@../../../../../rsc/RATP.png" /> | ||
</image> | ||
</ImageView> | ||
<VBox prefHeight="87.0" prefWidth="314.0"> | ||
<children> | ||
<Label prefHeight="17.0" prefWidth="225.0" text="Seleziona una Stazione di Partenza:"> | ||
<VBox.margin> | ||
<Insets bottom="5.0" /> | ||
</VBox.margin> | ||
</Label> | ||
<ComboBox fx:id="comboBoxPartenza" prefHeight="28.0" prefWidth="254.0" /> | ||
<Label prefHeight="17.0" prefWidth="225.0" text="Seleziona una Stazione di Arrivo:"> | ||
<VBox.margin> | ||
<Insets top="15.0" /> | ||
</VBox.margin> | ||
</Label> | ||
<ComboBox fx:id="comboBoxArrivo" prefHeight="28.0" prefWidth="254.0"> | ||
<VBox.margin> | ||
<Insets top="5.0" /> | ||
</VBox.margin> | ||
</ComboBox> | ||
</children> | ||
<HBox.margin> | ||
<Insets left="20.0" right="20.0" /> | ||
</HBox.margin> | ||
<padding> | ||
<Insets top="10.0" /> | ||
</padding> | ||
</VBox> | ||
<Button id="doCalcola" fx:id="btnCalcola" mnemonicParsing="false" onAction="#calcolaPercorso" prefHeight="27.0" prefWidth="207.0" text="Calcola percorso"> | ||
<HBox.margin> | ||
<Insets left="20.0" /> | ||
</HBox.margin> | ||
</Button> | ||
</children> | ||
<VBox.margin> | ||
<Insets bottom="10.0" left="20.0" right="20.0" top="20.0" /> | ||
</VBox.margin> | ||
</HBox> | ||
<TextArea id="elencoStazioni" fx:id="txtRisultato" disable="false" editable="false" prefHeight="186.0" prefWidth="455.0" wrapText="true"> | ||
<VBox.margin> | ||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" /> | ||
</VBox.margin> | ||
</TextArea> | ||
</children> | ||
</VBox> | ||
</center> | ||
<top> | ||
<Label alignment="CENTER_LEFT" contentDisplay="CENTER" disable="false" text="Lab8_MetroParis" textAlignment="CENTER" BorderPane.alignment="CENTER"> | ||
<BorderPane.margin> | ||
<Insets bottom="10.0" top="10.0" /> | ||
</BorderPane.margin> | ||
<font> | ||
<Font size="12.0" /> | ||
</font> | ||
</Label> | ||
</top> | ||
</BorderPane> |
Binary file added
BIN
+3.86 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/MetroDeParisController.class
Binary file not shown.
File renamed without changes.
File renamed without changes.
Binary file added
BIN
+4.84 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/dao/MetroDAO.class
Binary file not shown.
Binary file added
BIN
+1.38 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/dao/TestDAO.class
Binary file not shown.
Binary file added
BIN
+2.3 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/Connessione.class
Binary file not shown.
Binary file added
BIN
+1.78 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/Fermata.class
Binary file not shown.
Binary file added
BIN
+1.83 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/Linea.class
Binary file not shown.
Binary file added
BIN
+615 Bytes
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/Link.class
Binary file not shown.
Binary file added
BIN
+5.42 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/Model.class
Binary file not shown.
Binary file added
BIN
+1.84 KB
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/TestModel.class
Binary file not shown.
Binary file added
BIN
+727 Bytes
Lab09_MetroDeParis_Sol1/bin/it/polito/tdp/metrodeparis/model/Util.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml .Villettaersion="1.0" encoding="ASCII"?> | ||
<anttasks:AntTask xmi:.Villettaersion="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:anttasks="http://org.eclipse.fx.ide.jdt/1.0" buildDirectory="${project}/build"> | ||
<deploy> | ||
<application name="Lab8_MetroDeParis"/> | ||
<info/> | ||
</deploy> | ||
<signjar/> | ||
</anttasks:AntTask> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
Lab09_MetroDeParis_Sol1/src/it/polito/tdp/metrodeparis/MetroDeParis.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.geometry.Insets?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.ComboBox?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.control.TextArea?> | ||
<?import javafx.scene.image.Image?> | ||
<?import javafx.scene.image.ImageView?> | ||
<?import javafx.scene.layout.BorderPane?> | ||
<?import javafx.scene.layout.HBox?> | ||
<?import javafx.scene.layout.VBox?> | ||
<?import javafx.scene.text.Font?> | ||
|
||
<BorderPane id="BorderPane" maxHeight="-1.0" maxWidth="-1.0" minHeight="-1.0" minWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="it.polito.tdp.metrodeparis.MetroDeParisController"> | ||
<center> | ||
<VBox prefHeight="-1.0" prefWidth="-1.0"> | ||
<children> | ||
<HBox alignment="CENTER" prefHeight="44.0" prefWidth="498.0"> | ||
<children> | ||
<ImageView fitHeight="87.0" fitWidth="108.0" pickOnBounds="true" preserveRatio="true"> | ||
<image> | ||
<Image url="@../../../../../rsc/RATP.png" /> | ||
</image> | ||
</ImageView> | ||
<VBox prefHeight="87.0" prefWidth="314.0"> | ||
<children> | ||
<Label prefHeight="17.0" prefWidth="225.0" text="Seleziona una Stazione di Partenza:"> | ||
<VBox.margin> | ||
<Insets bottom="5.0" /> | ||
</VBox.margin> | ||
</Label> | ||
<ComboBox fx:id="comboBoxPartenza" prefHeight="28.0" prefWidth="254.0" /> | ||
<Label prefHeight="17.0" prefWidth="225.0" text="Seleziona una Stazione di Arrivo:"> | ||
<VBox.margin> | ||
<Insets top="15.0" /> | ||
</VBox.margin> | ||
</Label> | ||
<ComboBox fx:id="comboBoxArrivo" prefHeight="28.0" prefWidth="254.0"> | ||
<VBox.margin> | ||
<Insets top="5.0" /> | ||
</VBox.margin> | ||
</ComboBox> | ||
</children> | ||
<HBox.margin> | ||
<Insets left="20.0" right="20.0" /> | ||
</HBox.margin> | ||
<padding> | ||
<Insets top="10.0" /> | ||
</padding> | ||
</VBox> | ||
<Button id="doCalcola" fx:id="btnCalcola" mnemonicParsing="false" onAction="#calcolaPercorso" prefHeight="27.0" prefWidth="207.0" text="Calcola percorso"> | ||
<HBox.margin> | ||
<Insets left="20.0" /> | ||
</HBox.margin> | ||
</Button> | ||
</children> | ||
<VBox.margin> | ||
<Insets bottom="10.0" left="20.0" right="20.0" top="20.0" /> | ||
</VBox.margin> | ||
</HBox> | ||
<TextArea id="elencoStazioni" fx:id="txtRisultato" disable="false" editable="false" prefHeight="186.0" prefWidth="455.0" wrapText="true"> | ||
<VBox.margin> | ||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" /> | ||
</VBox.margin> | ||
</TextArea> | ||
</children> | ||
</VBox> | ||
</center> | ||
<top> | ||
<Label alignment="CENTER_LEFT" contentDisplay="CENTER" disable="false" text="Lab8_MetroParis" textAlignment="CENTER" BorderPane.alignment="CENTER"> | ||
<BorderPane.margin> | ||
<Insets bottom="10.0" top="10.0" /> | ||
</BorderPane.margin> | ||
<font> | ||
<Font size="12.0" /> | ||
</font> | ||
</Label> | ||
</top> | ||
</BorderPane> |
Oops, something went wrong.