Interface FieldInjectionPointAttributes<T,X>
-
- All Superinterfaces:
InjectionPoint,WeldInjectionPointAttributes<T,Field>
- All Known Implementing Classes:
ForwardingFieldInjectionPointAttributes,InferringFieldInjectionPointAttributes
public interface FieldInjectionPointAttributes<T,X> extends WeldInjectionPointAttributes<T,Field>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnnotatedField<X>getAnnotated()Obtain an instance ofAnnotatedFieldorAnnotatedParameter, depending upon whether the injection point is an injected field or a constructor/method parameter.FieldgetMember()Get theFieldobject in the case of field injection, theMethodobject in the case of method parameter injection or theConstructorobject in the case of constructor parameter injection.-
Methods inherited from interface javax.enterprise.inject.spi.InjectionPoint
getBean, getQualifiers, getType, isDelegate, isTransient
-
Methods inherited from interface org.jboss.weld.injection.attributes.WeldInjectionPointAttributes
getQualifier
-
-
-
-
Method Detail
-
getAnnotated
AnnotatedField<X> getAnnotated()
Description copied from interface:InjectionPointObtain an instance ofAnnotatedFieldorAnnotatedParameter, depending upon whether the injection point is an injected field or a constructor/method parameter.- Specified by:
getAnnotatedin interfaceInjectionPoint- Returns:
- an
AnnotatedFieldorAnnotatedParameter
-
getMember
Field getMember()
Description copied from interface:InjectionPointGet theFieldobject in the case of field injection, theMethodobject in the case of method parameter injection or theConstructorobject in the case of constructor parameter injection.- Specified by:
getMemberin interfaceInjectionPoint- Returns:
- the member
-
-