org.jvnet.annox.reflect
Interface ParameterizedAnnotatedElement

All Superinterfaces:
AnnotatedElement
All Known Implementing Classes:
ConstructorAnnotatedElement, MethodAnnotatedElement, XConstructor, XMethod

public interface ParameterizedAnnotatedElement
extends AnnotatedElement


Method Summary
 Annotation[][] getParameterAnnotations()
          Returns an array of arrays that represent the annotations on the formal parameters, in declaration order, of the method represented by this parameterized annotated element.
 
Methods inherited from interface java.lang.reflect.AnnotatedElement
getAnnotation, getAnnotations, getDeclaredAnnotations, isAnnotationPresent
 

Method Detail

getParameterAnnotations

Annotation[][] getParameterAnnotations()
Returns an array of arrays that represent the annotations on the formal parameters, in declaration order, of the method represented by this parameterized annotated element. (Returns an array of length zero if the underlying element is parameterless. If the method has one or more parameters, a nested array of length zero is returned for each parameter with no annotations.) The caller of this method is free to modify the returned arrays; it will have no effect on the arrays returned to other callers.

Returns:
an array of arrays that represent the annotations on the formal parameters, in declaration order.


Copyright © 2006-2011 Highsource. All Rights Reserved.