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

net.rgielen.fxweaver.spring.SpringFxWeaver Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package net.rgielen.fxweaver.spring;

import net.rgielen.fxweaver.core.FxWeaver;
import org.springframework.context.ConfigurableApplicationContext;

import javax.inject.Inject;
import javax.inject.Named;

/**
 * SpringFxmlLoader is a Spring-powered version of FxWeaver.
 *
 * @author Rene Gielen
 */
@Named
public class SpringFxWeaver extends FxWeaver {

    @Inject
	public SpringFxWeaver(ConfigurableApplicationContext context) {
        super(context::getBean, context::close);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy