}
private void loadAnnotationConstructorDefaultedParameters(
LazyMethod method, MethodMirror meth, AnnotationInvocation ai) {
for (Parameter ctorParam : method.getParameterLists().get(0).getParameters()) {
AnnotationConstructorParameter acp = new AnnotationConstructorParameter();
acp.setParameter(ctorParam);
if (ctorParam.isDefaulted()) {
acp.setDefaultArgument(
loadAnnotationConstructorDefaultedParameter(method, meth, ctorParam, acp));
}
ai.getConstructorParameters().add(acp);
}
}