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

io.github.factoryfx.javafx.RichClientRoot Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package io.github.factoryfx.javafx;

import io.github.factoryfx.factory.SimpleFactoryBase;
import io.github.factoryfx.factory.attribute.dependency.FactoryAttribute;
import io.github.factoryfx.javafx.stage.StageFactory;
import javafx.stage.Stage;


public class RichClientRoot extends SimpleFactoryBase {
    public final FactoryAttribute stageFactory = new FactoryAttribute<>();

    @Override
    protected Stage createImpl() {
        return stageFactory.instance();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy