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

Packages that use InjectionPoint
com.google.inject.spi Guice service provider interface 
 

Uses of InjectionPoint in com.google.inject.spi
 

Methods in com.google.inject.spi that return InjectionPoint
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 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.
 

Method parameters in com.google.inject.spi with type arguments of type InjectionPoint
 V DefaultBindingTargetVisitor.visitConstructor(Constructor<? extends T> constructor, Set<InjectionPoint> injectionPoints)
           
 V BindingTargetVisitor.visitConstructor(Constructor<? extends T> constructor, Set<InjectionPoint> injectionPoints)
          Visit a constructor binding.
 V DefaultBindingTargetVisitor.visitInstance(T instance, Set<InjectionPoint> injectionPoints)
           
 V BindingTargetVisitor.visitInstance(T instance, Set<InjectionPoint> injectionPoints)
          Visit a instance binding.
 V DefaultBindingTargetVisitor.visitProvider(Provider<? extends T> provider, Set<InjectionPoint> injectionPoints)
           
 V BindingTargetVisitor.visitProvider(Provider<? extends T> provider, Set<InjectionPoint> injectionPoints)
          Visit a provider instance binding.
 



Copyright 2008 Google Inc. All Rights Reserved.