Exemplo n.º 1
0
 /** @param addParamAnnotations Whether parameter annotations are to be added as well */
 protected void _addMixOvers(Method mixin, AnnotatedMethod target, boolean addParamAnnotations) {
   for (Annotation a : mixin.getDeclaredAnnotations()) {
     if (_annotationIntrospector.isHandled(a)) {
       target.addOrOverride(a);
     }
   }
   if (addParamAnnotations) {
     Annotation[][] pa = mixin.getParameterAnnotations();
     for (int i = 0, len = pa.length; i < len; ++i) {
       for (Annotation a : pa[i]) {
         target.addOrOverrideParam(i, a);
       }
     }
   }
 }
Exemplo n.º 2
0
 protected AnnotatedMethod _constructCreatorMethod(Method m) {
   return new AnnotatedMethod(
       m,
       _collectRelevantAnnotations(m.getDeclaredAnnotations()),
       _collectRelevantAnnotations(m.getParameterAnnotations()));
 }