jjugccc2016fall-javafx/src/com/torutk/tinymap/TinyMapApp.java @ b918a80d
| b918a80d | TAKAHASHI,Toru | /*
|
|
* © 2016 Toru Takahashi
|
|||
*/
|
|||
package com.torutk.tinymap;
|
|||
import javafx.application.Application;
|
|||
import javafx.fxml.FXMLLoader;
|
|||
import javafx.scene.Parent;
|
|||
import javafx.scene.Scene;
|
|||
import javafx.stage.Stage;
|
|||
/**
|
|||
*
|
|||
* @author Toru Takahashi
|
|||
*/
|
|||
public class TinyMapApp extends Application {
|
|||
@Override
|
|||
public void start(Stage stage) throws Exception {
|
|||
Parent root = FXMLLoader.load(getClass().getResource("TinyMapView.fxml"));
|
|||
Scene scene = new Scene(root);
|
|||
stage.setScene(scene);
|
|||
stage.show();
|
|||
}
|
|||
/**
|
|||
* @param args the command line arguments
|
|||
*/
|
|||
public static void main(String[] args) {
|
|||
launch(args);
|
|||
}
|
|||
}
|