org.javabits.yar.guice.RegistryBindingBuilderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yar-guice Show documentation
Show all versions of yar-guice Show documentation
Yar Guice: provide a implementation / integration base on guice
package org.javabits.yar.guice;
/**
* TODO comment
* Date: 5/14/13
* Time: 10:08 AM
*
* @author Romain Gilles
*/
class RegistryBindingBuilderImpl implements RegistryBindingBuilder {
private final Iterable> registryProviders;
public RegistryBindingBuilderImpl(Iterable> registryProviders) {
this.registryProviders = registryProviders;
}
@Override
public void noWait() {
for (RegistryProvider> registryProvider : registryProviders) {
registryProvider.noWait();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy