Package javax.enterprise.inject.spi
Interface ProcessInjectionPoint<T,X>
-
- Type Parameters:
T
- managed bean classX
- declared type of the injection point
public interface ProcessInjectionPoint<T,X>
Gets fired for each InjectionPoint.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDefinitionError(java.lang.Throwable t)
Adding definition error.InjectionPoint
getInjectionPoint()
void
setInjectionPoint(InjectionPoint injectionPoint)
Replace the original InjectionPoint point with the given one.
-
-
-
Method Detail
-
getInjectionPoint
InjectionPoint getInjectionPoint()
- Returns:
- the InjectionPoint created from originally parsing the AnnotatedType.
-
setInjectionPoint
void setInjectionPoint(InjectionPoint injectionPoint)
Replace the original InjectionPoint point with the given one.- Parameters:
injectionPoint
-
-
addDefinitionError
void addDefinitionError(java.lang.Throwable t)
Adding definition error. Container aborts processing after calling all observers.- Parameters:
t
- throwable
-
-