public void setAnnotationsDone(ClassFile cf, Object tag) {
   curAttr.defaultEntries = getDefaultValueEntries();
   annotationAttributes.put(annotationName, curAttr);
 }
 public void setAnnotation(
     ClassFile cf, Object tag, int annotationIndex, String annotationType) {
   if (annotationType.equals("Ljava/lang/annotation/Inherited;")) {
     curAttr.isInherited = true;
   }
 }