Uses of Interface
com.google.inject.Injector

Packages that use Injector
com.google.inject Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework. 
com.google.inject.tools.jmx JMX integration 
 

Uses of Injector in com.google.inject
 

Methods in com.google.inject that return Injector
 Injector Injector.createChildInjector(Iterable<? extends Module> modules)
          Returns a new injector that inherits all state from this injector.
 Injector Injector.createChildInjector(Module... modules)
          Returns a new injector that inherits all state from this injector.
static Injector Guice.createInjector(Iterable<? extends Module> modules)
          Creates an injector for the given set of modules.
static Injector Guice.createInjector(Module... modules)
          Creates an injector for the given set of modules.
static Injector Guice.createInjector(Stage stage, Iterable<? extends Module> modules)
          Creates an injector for the given set of modules, in a given development stage.
static Injector Guice.createInjector(Stage stage, Module... modules)
          Creates an injector for the given set of modules, in a given development stage.
 Injector Injector.getParent()
          Returns this injector's parent, or null if this is a top-level injector.
 

Uses of Injector in com.google.inject.tools.jmx
 

Methods in com.google.inject.tools.jmx with parameters of type Injector
static void Manager.manage(MBeanServer server, String domain, Injector injector)
          Registers all the bindings of an Injector with the given MBean server.
static void Manager.manage(String domain, Injector injector)
          Registers all the bindings of an Injector with the platform MBean server.
 



Copyright 2008 Google Inc. All Rights Reserved.