{
RuntimeVisibleAnnotations rva = (RuntimeVisibleAnnotations) attr;
AnnotationEntry[] annos = rva.getAnnotationEntries();
for (int j = 0; j < annos.length; j++)
{
AnnotationEntry a = annos[j];
annotationGenObjs.add(new AnnotationEntryGen(a,
getConstantPool(), false));
}
}
else
if (attr instanceof RuntimeInvisibleAnnotations)
{
RuntimeInvisibleAnnotations ria = (RuntimeInvisibleAnnotations) attr;
AnnotationEntry[] annos = ria.getAnnotationEntries();
for (int j = 0; j < annos.length; j++)
{
AnnotationEntry a = annos[j];
annotationGenObjs.add(new AnnotationEntryGen(a,
getConstantPool(), false));
}
}
}