org.picocontainer.DefaultPicoContainer Java Examples

The following examples show how to use org.picocontainer.DefaultPicoContainer. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AutopatchRegistry.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
public PicoContainer configureContainer(){
    pico = new DefaultPicoContainer();
    pico.addComponent(StandaloneMigrationLauncher.class);
    pico.addComponent(MigrationUtil.class);
    pico.start();
    return pico;
}
 
Example #2
Source File: App.java    From androidtestdebug with MIT License 5 votes vote down vote up
private static MutablePicoContainer 初始化容器() {
	MutablePicoContainer pico = new DefaultPicoContainer();
	pico.addComponent(IocBookStore.class);
	pico.addComponent(BookReader.class);
	
	return pico;
}
 
Example #3
Source File: AbstractContainerBuilder.java    From javers with Apache License 2.0 4 votes vote down vote up
protected void bootContainer() {
    container = new DefaultPicoContainer(new Caching());
}