Uses of Class
com.google.inject.spi.Dependency
-
Packages that use Dependency Package Description com.google.inject Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework.com.google.inject.assistedinject Extension for combining factory interfaces with injection; this extension requiresguice-assistedinject.jar
.com.google.inject.spi Guice service provider interface -
-
Uses of Dependency in com.google.inject
Methods in com.google.inject with parameters of type Dependency Modifier and Type Method Description <T> Provider<T>
Binder. getProvider(Dependency<T> dependency)
Returns the provider used to obtain instances for the given injection key. -
Uses of Dependency in com.google.inject.assistedinject
Methods in com.google.inject.assistedinject that return types with arguments of type Dependency Modifier and Type Method Description Set<Dependency<?>>
AssistedMethod. getDependencies()
Returns all non-assisted dependencies required to construct and inject the implementation.Set<Dependency<?>>
FactoryProvider. getDependencies()
Deprecated. -
Uses of Dependency in com.google.inject.spi
Methods in com.google.inject.spi that return Dependency Modifier and Type Method Description static <T> Dependency<T>
Dependency. get(Key<T> key)
Returns a new dependency that is not attached to an injection point.Dependency<T>
ProviderLookup. getDependency()
Methods in com.google.inject.spi that return types with arguments of type Dependency Modifier and Type Method Description static Set<Dependency<?>>
Dependency. forInjectionPoints(Set<InjectionPoint> injectionPoints)
Returns the dependencies from the given injection points.Set<Dependency<?>>
ConvertedConstantBinding. getDependencies()
Returns a singleton set containing only the converted key.Set<Dependency<?>>
HasDependencies. getDependencies()
Returns the known dependencies for this type.List<Dependency<?>>
InjectionPoint. getDependencies()
Returns the dependencies for this injection point.Constructors in com.google.inject.spi with parameters of type Dependency Constructor Description ProviderLookup(Object source, Dependency<T> dependency)
-