public void visitEnum(String name, String desc, String value) {
}
public AnnotationVisitor visitAnnotation(String name, String desc) {
AnnotationInfo annotationInfo = new AnnotationInfo(desc);
if(grepClient.getAnnotationCriterion().contains(annotationInfo.getName())){
info.getAnnotations().add(annotationInfo);
List<AnnotationInfo> infos = annotationGrep.getAnnotatedAnnotationMap().get(annotationInfo.getName());
if (infos == null) {
infos = new ArrayList<AnnotationInfo>();
annotationGrep.getAnnotatedAnnotationMap().put(annotationInfo.getName(), infos);
}
infos.add(info);
return new AnnotationDefVisitor(grepClient, annotationInfo);
}else{
return new EmptyVisitor();