io.github.factoryfx.javafx.RichClientRoot Maven / Gradle / Ivy
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
public Stage createImpl() {
return stageFactory.instance();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy