* @param injectionPoint the original {@link InjectionPoint}
* @return fired {@link ProcessInjectionPoint} event
*/
public GProcessInjectionPoint fireProcessInjectionPointEvent(InjectionPoint injectionPoint)
{
GProcessInjectionPoint event = new GProcessInjectionPoint(injectionPoint);
webBeansContext.getBeanManagerImpl().fireEvent(event, true, AnnotationUtil.EMPTY_ANNOTATION_ARRAY);
return event;
}