* @param constructor
*/
private void handleConstructorAnnotations(final AnnotationEnhancer enhancer, final JavaMethod constructor) {
DocletTag[] tags = constructor.getTags();
for (int i = 0; i < tags.length; i++) {
RawAnnotation rawAnnotation = getRawAnnotation(
tags[i], enhancer.getClassName(), enhancer.getClassFileName()
);
if (rawAnnotation == null) {
continue;
}
enhancer.insertConstructorAnnotation(constructor, rawAnnotation);
logInfo(
"\tprocessing constructor annotation [" + rawAnnotation.getName() + " @ "
+ constructor.getParentClass().getName() + '.' +
constructor.getName()
+ ']'
);
}