Uses of Class
com.google.inject.spi.InjectionPoint

Packages that use InjectionPoint
com.google.inject.internal Guice (sounds like like "juice") 
com.google.inject.spi Guice service provider interface 
 

Uses of InjectionPoint in com.google.inject.internal
 

Methods in com.google.inject.internal with parameters of type InjectionPoint
static void Errors.formatInjectionPoint(Formatter formatter, Dependency<?> dependency, InjectionPoint injectionPoint)
           
 

Uses of InjectionPoint in com.google.inject.spi
 

Methods in com.google.inject.spi that return InjectionPoint
static
<T> InjectionPoint
InjectionPoint.forConstructor(Constructor<T> constructor)
          Returns a new injection point for the specified constructor.
static
<T> InjectionPoint
InjectionPoint.forConstructor(Constructor<T> constructor, TypeLiteral<? extends T> type)
          Returns a new injection point for the specified constructor of type.
static InjectionPoint InjectionPoint.forConstructorOf(Class<?> type)
          Returns a new injection point for the injectable constructor of type.
static InjectionPoint InjectionPoint.forConstructorOf(TypeLiteral<?> type)
          Returns a new injection point for the injectable constructor of type.
 InjectionPoint ConstructorBinding.getConstructor()
          Gets the constructor this binding injects.
 InjectionPoint Dependency.getInjectionPoint()
          Returns the injection point to which this dependency belongs, or null if this dependency isn't attached to a particular injection point.
 

Methods in com.google.inject.spi that return types with arguments of type InjectionPoint
static Set<InjectionPoint> InjectionPoint.forInstanceMethodsAndFields(Class<?> type)
          Returns all instance method and field injection points on type.
static Set<InjectionPoint> InjectionPoint.forInstanceMethodsAndFields(TypeLiteral<?> type)
          Returns all instance method and field injection points on type.
static Set<InjectionPoint> InjectionPoint.forStaticMethodsAndFields(Class<?> type)
          Returns all static method and field injection points on type.
static Set<InjectionPoint> InjectionPoint.forStaticMethodsAndFields(TypeLiteral<?> type)
          Returns all static method and field injection points on type.
 Set<InjectionPoint> ConstructorBinding.getInjectableMembers()
          Returns all instance method and field injection points on type.
 Set<InjectionPoint> InstanceBinding.getInjectionPoints()
          Returns the field and method injection points of the instance, injected at injector-creation time only.
 Set<InjectionPoint> ProviderInstanceBinding.getInjectionPoints()
          Returns the field and method injection points of the provider, injected at injector-creation time only.
 Set<InjectionPoint> InjectionRequest.getInjectionPoints()
          Returns the instance methods and fields of instance that will be injected to fulfill this request.
 Set<InjectionPoint> StaticInjectionRequest.getInjectionPoints()
          Returns the static methods and fields of type that will be injected to fulfill this request.
 

Method parameters in com.google.inject.spi with type arguments of type InjectionPoint
static Set<Dependency<?>> Dependency.forInjectionPoints(Set<InjectionPoint> injectionPoints)
          Returns the dependencies from the given injection points.
 



Copyright © 2006-2013 Google, Inc.. All Rights Reserved.