package com.almasb.jencrypt;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class JEncryptApp extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("ui.fxml"));
stage.setScene(new Scene(root));
stage.setTitle("jEncrypt 1.0");
stage.setResizable(false);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}