/* 265 */ AnnotationValue[] annotationAnnotations = annotation.getAnnotationType().getAnnotations();
/* 266 */ for (int i = 0; i < annotationAnnotations.length; i++)
/* */ {
/* 268 */ if (!annotationAnnotations[i].getAnnotationType().getName().equals(DEPENDENCY_CLASS_NAME))
/* */ continue;
/* 270 */ StringValue value = (StringValue)annotationAnnotations[i].getValue("name");
/* 271 */ StringValue dependency = (StringValue)annotation.getValue(value.getValue());
/* 272 */ addDependency(topLevelAnnotationName, dependency, dependencies);
/* */ }
/* */ }
/* */ }