All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datafx.samples.inheritance.InheritanceCheck Maven / Gradle / Ivy

There is a newer version: 8.0b5
Show newest version
package org.datafx.samples.inheritance;

import javafx.application.Application;
import javafx.stage.Stage;
import org.datafx.controller.flow.Flow;

public class InheritanceCheck extends Application {

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

    @Override
    public void start(Stage primaryStage) throws Exception {
        new Flow(ControllerImpl.class).startInStage(primaryStage);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy