org.minifx.fxmlloading.builders.NestableFxmlNodeBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minifx-fxml Show documentation
Show all versions of minifx-fxml Show documentation
JavaFX FXML loading by conventions.
/**
* Copyright (c) 2018 European Organisation for Nuclear Research (CERN), All Rights Reserved.
*/
package org.minifx.fxmlloading.builders;
import static java.util.Objects.requireNonNull;
import org.minifx.fxmlloading.configuration.FxmlLoadingConfiguration;
import org.minifx.fxmlloading.factories.impl.ControllerFactory;
public class NestableFxmlNodeBuilder extends AbstractFxmlNodeBuilder {
public NestableFxmlNodeBuilder(FxmlLoadingConfiguration configuration, ControllerFactory controllerFactory) {
super(configuration, requireNonNull(controllerFactory, "controller factory must not be null"));
}
}