true
);
for (final MethodReference candidate : candidates) {
if (MetadataHelper.isOverride(method, candidate)) {
final Annotation annotation = new Annotation();
if (_astBuilder != null) {
annotation.setType(_astBuilder.convertType(annotationType));
}
else {
annotation.setType(new SimpleType(annotationType.getSimpleName()));
}
node.getAnnotations().add(annotation);
break;
}