gui updates
This commit is contained in:
@@ -2,4 +2,4 @@ Manifest-Version: 1.0
|
||||
Main-Class: lodge.TestReservations
|
||||
Implementation-Title: lodge.reservationsystem
|
||||
Implementation-Version: 1.0
|
||||
Class-Path: lodge.reservationsystem com.google.gson .
|
||||
Class-Path: lodge.reservationsystem com.google.gson avafx.base,javafx.controls,javafx.fxml,javafx.graphics,javafx.media,javafx.swing,javafx.web .
|
||||
23
src/main/java/lodge/TestMainFx.java
Normal file
23
src/main/java/lodge/TestMainFx.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package lodge;
|
||||
|
||||
import javafx.application.Application;
|
||||
import javafx.scene.Scene;
|
||||
import javafx.stage.Stage;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.layout.StackPane;
|
||||
|
||||
public class TestMainFx extends Application{
|
||||
@Override
|
||||
public void start(Stage primaryStage) {
|
||||
primaryStage.setTitle("Lodge ReservationSystem");
|
||||
Scene scene = new Scene(new StackPane(new Label("Hello World!")), 800, 600);
|
||||
primaryStage.setScene(scene);
|
||||
primaryStage.show();
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
launch(args);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1 +1 @@
|
||||
{ "Account":{"account_number": "A45098176","phone_number": "701-456-7890","mailing_address": { "Address":{"street": "10 wilco ave","city": "wilco","state": "WY","zip": "82801"}},"email_address": { "EmailAddress":{"email": "wilco@wyommin.net"}},"reservations":[]}}
|
||||
{ "Account":{"account_number": "A45098176","phone_number": "701-456-7890","mailing_address": { "Address":{"street": "10 wilco ave","city": "wilco","state": "WY","zip": "82801"}},"email_address": { "EmailAddress":{"email": "wilco@wyommin.net"}},"reservations":[{"CabinReservation":{"reservation_number":"R0535276622"}},{"HouseReservation":{"reservation_number":"R0499811708"}}]}}
|
||||
Reference in New Issue
Block a user