125126127128129130131132133134135
} public BeanFactory<T> annotation(Annotation ann) { if (_annotated == null) _annotated = new AnnotatedElementImpl(_managedBean.getAnnotated()); _annotated.addAnnotation(ann); return this; }
135136137138139140141142143144145
} public BeanFactory<T> annotation(Collection<Annotation> list) { if (_annotated == null) _annotated = new AnnotatedElementImpl(_managedBean.getAnnotated()); for (Annotation ann : list) { _annotated.addAnnotation(ann); }
132133134135136137138139140141142
} public BeanBuilder<T> annotation(Annotation ann) { if (_annotated == null) _annotated = new AnnotatedElementImpl(_managedBean.getAnnotated()); _annotated.addAnnotation(ann); return this; }
142143144145146147148149150151152
} public BeanBuilder<T> annotation(Collection<Annotation> list) { if (_annotated == null) _annotated = new AnnotatedElementImpl(_managedBean.getAnnotated()); for (Annotation ann : list) { _annotated.addAnnotation(ann); }
5354555657585960
{ private Annotated _annotated; public InjectionPointStandardBean() { _annotated = new AnnotatedElementImpl(getClass(), null, getClass().getAnnotations()); }