/**
*
*/
private void analyzeParameters() {
final AnnotatedMethod aMethod = AnnotationManager.getAnnotatedClass(method.getDeclaringClass()).getAnnotatedMethod(method);
final Annotation[][] parameterAnnotations = aMethod.getParameterAnnotations();
int parameterSize = aMethod.getMethod().getParameterTypes().length;
for(int i = 0; i < parameterAnnotations.length; i++) {
for(final Annotation annotation : parameterAnnotations[i]) {