Package aQute.lib.inject
Class Injector.Target<T>
- java.lang.Object
-
- aQute.lib.inject.Injector.Target<T>
-
-
Field Summary
Fields Modifier and Type Field Description T
annotation
The passed annotation for this Injectorjava.lang.reflect.Member
member
The member to be injected, either a Method or Fieldjava.lang.reflect.Type
primaryType
The primary type.java.lang.Object
target
The target object being injectedjava.lang.reflect.Type
type
The type for which to get a value
-
Constructor Summary
Constructors Constructor Description Target()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
annotation
public T annotation
The passed annotation for this Injector
-
member
public java.lang.reflect.Member member
The member to be injected, either a Method or Field
-
primaryType
public java.lang.reflect.Type primaryType
The primary type. This is the type of the first argument of a method or the type of a field
-
type
public java.lang.reflect.Type type
The type for which to get a value
-
target
public java.lang.Object target
The target object being injected
-
-