1 package spoon.reflect.declaration;2 3 import java.lang.annotation.Annotation ;4 5 6 /**7 * This element defines an annotation type.8 */9 public interface CtAnnotationType<T extends Annotation > extends CtSimpleType<T> {10 }11