Package com.google.inject.internal
Class InjectorShell.RootModule
- java.lang.Object
-
- com.google.inject.internal.InjectorShell.RootModule
-
- All Implemented Interfaces:
Module
- Enclosing class:
- InjectorShell
private static class InjectorShell.RootModule extends java.lang.Object implements Module
-
-
Constructor Summary
Constructors Modifier Constructor Description private
RootModule()
-
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
.
-
-
-
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.
-
-