{
AnnotationAttribute[] attrs = ann.getAnnotationAttributes();
for ( int i = 0; i < attrs.length; i++ )
{
AnnotationAttribute attr = attrs[i];
if ( attr.getAttributeName().equals( attrName ) )
{
ProcessedAnnotation[] array = attr.getAnnotationValues();
assert array != null : "attribute " + attrName + " did not have an array of annotations.";
return array;
}
}