Uses of Interface
com.google.inject.Module

Packages that use Module
com.google.inject Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework. 
com.google.inject.servlet Servlet API scopes and bindings. 
 

Uses of Module in com.google.inject
 

Classes in com.google.inject that implement Module
 class AbstractModule
          A support class for Modules which reduces repetition and results in a more readable configuration.
 

Methods in com.google.inject with parameters of type Module
static Injector Guice.createInjector(Module... modules)
          Creates an injector for the given set of modules.
static Injector Guice.createInjector(Stage stage, Module... modules)
          Creates an injector for the given set of modules, in a given development stage.
 void Binder.install(Module module)
          Uses the given module to configure more bindings.
protected  void AbstractModule.install(Module module)
           
 

Method parameters in com.google.inject with type arguments of type Module
static Injector Guice.createInjector(Iterable<Module> modules)
          Creates an injector for the given set of modules.
static Injector Guice.createInjector(Stage stage, Iterable<Module> modules)
          Creates an injector for the given set of modules, in a given development stage.
 

Uses of Module in com.google.inject.servlet
 

Classes in com.google.inject.servlet that implement Module
 class ServletModule
          Configures the servlet scopes and creates bindings for the servlet API objects so you can inject the request, response, session, etc.
 



Copyright 2007 Google Inc. All Rights Reserved.