blob: d981dccbcf936fa2a26db9a844c5a6af00c082cb [file] [log] [blame]
package org.robolectric.bytecode;
import java.lang.annotation.Annotation;
public interface ClassInfo {
String getName();
boolean isInterface();
boolean isAnnotation();
boolean hasAnnotation(Class<? extends Annotation> annotationClass);
}