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.internal Guice (sounds like "juice")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.internal
Methods in com.google.inject.internal that return types with arguments of type Dependency Modifier and Type Method Description java.util.Set<Dependency<?>>
ProviderMethod. getDependencies()
Methods in com.google.inject.internal with parameters of type Dependency Modifier and Type Method Description protected T
ProviderMethod. doProvision(com.google.inject.internal.InternalContext context, Dependency<?> dependency)
-
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 java.util.Set<Dependency<?>>
Dependency. forInjectionPoints(java.util.Set<InjectionPoint> injectionPoints)
Returns the dependencies from the given injection points.java.util.Set<Dependency<?>>
ConvertedConstantBinding. getDependencies()
Returns a singleton set containing only the converted key.java.util.Set<Dependency<?>>
HasDependencies. getDependencies()
Returns the known dependencies for this type.java.util.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(java.lang.Object source, Dependency<T> dependency)
-