Interface InjectionPointInfo
- 
 public interface InjectionPointInfoAn injection point defined on some bean. Injection points may be fields or method parameters.- Since:
- 4.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description DeclarationInfodeclaration()Returns the declaration of this injection point.Collection<AnnotationInfo>qualifiers()Returns a collection of qualifiers declared on this injection point, represented asAnnotationInfo.Typetype()Returns thetypeof this injection point.
 
- 
- 
- 
Method Detail- 
typeType type() Returns thetypeof this injection point.- Returns:
- the type of this injection point, never null
 
 - 
qualifiersCollection<AnnotationInfo> qualifiers() Returns a collection of qualifiers declared on this injection point, represented asAnnotationInfo.- Returns:
- collection of qualifiers, never null
 
 - 
declarationDeclarationInfo declaration() Returns the declaration of this injection point. That is aFieldInfofor field injection, orParameterInfofor:- constructor injection,
- initializer method,
- disposer method,
- producer method,
- observer method.
 - Returns:
- the declaration of this injection point, never null
 
 
- 
 
-