blob: 92d2ab6d793b2cfd066b53c2e60810760083002a [file] [log] [blame]
package com.android.class2greylist;
import org.apache.bcel.classfile.AnnotationEntry;
/**
* Interface for an annotation handler, which handle individual annotations on
* class members.
*/
public interface AnnotationHandler {
void handleAnnotation(AnnotationEntry annotation, AnnotationContext context);
}