Package com.gmail.nirschl.peter.b64decoder

Source Code of com.gmail.nirschl.peter.b64decoder.App

package com.gmail.nirschl.peter.b64decoder;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

/**
* Application entry point.
*/
public class App extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage stage) throws Exception {
        Parent root = FXMLLoader.load(getClass().getResource("/fxml/MainWindow.fxml"));

        Scene scene = new Scene(root);
        scene.getStylesheets().add("/styles/Default.css");

        stage.setTitle("Base64 Decoder");
        stage.setScene(scene);
        stage.show();
    }
}
TOP

Related Classes of com.gmail.nirschl.peter.b64decoder.App

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.