KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > reflect > declaration > CtAnnotationType


1 package spoon.reflect.declaration;
2
3 import java.lang.annotation.Annotation JavaDoc;
4
5
6 /**
7  * This element defines an annotation type.
8  */

9 public interface CtAnnotationType<T extends Annotation JavaDoc> extends CtSimpleType<T> {
10 }
11
Popular Tags