Uses of Interface
org.directwebremoting.guice.BindUtil.BindingProvider

Packages that use BindUtil.BindingProvider
org.directwebremoting.guice This package provides support for Guice dependency injection in DWR-based web applications. 
 

Uses of BindUtil.BindingProvider in org.directwebremoting.guice
 

Methods in org.directwebremoting.guice that return BindUtil.BindingProvider
static
<T> BindUtil.BindingProvider<T>
BindUtil.fromConstructor(com.google.inject.Binder binder, java.lang.Class<T> type, com.google.inject.Key... keys)
          Creates a chainable provider that constructs an instance of the given type given a list of constructor parameter types, specified as Guice keys.
static
<T> BindUtil.BindingProvider<T>
BindUtil.fromConstructor(java.lang.Class<T> type, com.google.inject.Key... keys)
          Creates a chainable provider that constructs an instance of the given type given a list of constructor parameter types, specified as Guice keys.
static
<T> BindUtil.BindingProvider<T>
BindUtil.fromFactoryMethod(com.google.inject.Binder binder, java.lang.Class<T> providedType, java.lang.Class<?> factoryType, java.lang.String methodName, com.google.inject.Key... keys)
          Creates a chainable provider that constructs an instance of providedType using a factory method defined by factoryType, methodName, and a list of method parameter types specified as Guice keys.
static
<T> BindUtil.BindingProvider<T>
BindUtil.fromFactoryMethod(com.google.inject.Binder binder, java.lang.Class<T> providedType, com.google.inject.Key<?> factoryKey, java.lang.String methodName, com.google.inject.Key... keys)
          Creates a chainable provider that constructs an instance of providedType by calling method methodName of the type in factoryKey with method parameter types specified as Guice keys.
static
<T> BindUtil.BindingProvider<T>
BindUtil.fromFactoryMethod(java.lang.Class<T> providedType, java.lang.Class<?> factoryType, java.lang.String methodName, com.google.inject.Key... keys)
          Creates a chainable provider that constructs an instance of providedType using a factory method defined by factoryType, methodName, and a list of method parameter types specified as Guice keys.
static
<T> BindUtil.BindingProvider<T>
BindUtil.fromFactoryMethod(java.lang.Class<T> providedType, com.google.inject.Key<?> factoryKey, java.lang.String methodName, com.google.inject.Key... keys)
          Creates a chainable provider that constructs an instance of providedType by calling method methodName of the type in factoryKey with method parameter types specified as Guice keys.
 BindUtil.BindingProvider<T> BindUtil.BindingProvider.injecting(java.lang.String methodName, com.google.inject.Key... paramKeys)
          Adds injection of a method defined by the given name and parameter types (specified as Guice keys) to this provider.
 


Copyright ? 2005