*/
public static ArrayList<FuelStation> fuelStations = new ArrayList<FuelStation>(Arrays.asList(initialFuelStations));
- /**
- * Launch GUI
- *
- * @param args Program arguments from additionally passed parameters. Mandatory
- * to have, but never used here.
- */
- public static void main(String[] args) {
- JFX.launch(args);
- }
-
/**
* Get an array of fuel stations which have a number of vending machines
* that is equal to {@code number_of_vending_machines}
static Parent parent;
static Scene scene;
+ /**
+ * Launch GUI
+ *
+ * @param args Program arguments from additionally passed parameters. Mandatory
+ * to have, but never used here.
+ */
+ public static void main(String[] args) {
+ launch(args);
+ }
+
@Override
public void start(Stage s) throws Exception {
stage = s;