io.github.factoryfx.javafx.RichClientRoot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javafxFactoryEditing Show documentation
Show all versions of javafxFactoryEditing Show documentation
factoryfx dependency injection framework
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();
}
}