Package com.google.inject.util
Class Modules.CombinedModule
- java.lang.Object
-
- com.google.inject.util.Modules.CombinedModule
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.util.Set<Module>
modulesSet
-
Constructor Summary
Constructors Constructor Description CombinedModule(java.lang.Iterable<? extends Module> modules)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(Binder binder)
Contributes bindings and other configurations for this module tobinder
.
-
-
-
Field Detail
-
modulesSet
final java.util.Set<Module> modulesSet
-
-
Constructor Detail
-
CombinedModule
CombinedModule(java.lang.Iterable<? extends Module> modules)
-
-
Method Detail
-
configure
public void configure(Binder binder)
Description copied from interface:Module
Contributes bindings and other configurations for this module tobinder
.Do not invoke this method directly to install submodules. Instead use
Binder.install(Module)
, which ensures thatprovider methods
are discovered.
-
-