final class AnnotationValueEnumRule extends Rule {
public void begin(final String nm, final Attributes attrs) {
AnnotationVisitor av = (AnnotationVisitor) peek();
if (av != null) {
av.visitEnum(attrs.getValue("name"),
attrs.getValue("desc"),
attrs.getValue("value"));
}
}
}