KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > support > reflect > declaration > CtAnnotationTypeImpl


1 package spoon.support.reflect.declaration;
2
3 import java.lang.annotation.Annotation JavaDoc;
4
5 import spoon.reflect.declaration.CtAnnotationType;
6 import spoon.reflect.visitor.CtVisitor;
7
8 /**
9  * The implementation for {@link spoon.reflect.declaration.CtAnnotationType}.
10  *
11  * @author Renaud Pawlak
12  */

13 public class CtAnnotationTypeImpl<T extends Annotation JavaDoc> extends
14         CtSimpleTypeImpl<T> implements CtAnnotationType<T> {
15     private static final long serialVersionUID = 1L;
16     public void accept(CtVisitor v) {
17         v.visitCtAnnotationType(this);
18     }
19
20 }
21
Popular Tags