KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dsl > Link


1 package dsl;
2
3 import spoon.aval.annotation.structure.AValTarget;
4 import spoon.aval.annotation.structure.Inside;
5 import spoon.aval.annotation.structure.Type;
6 import spoon.aval.annotation.value.URLValue;
7 import spoon.reflect.declaration.CtMethod;
8
9
10 @Inside(Web.class)
11 @AValTarget(CtMethod.class)
12 @Type(void.class)
13 public @interface Link {
14    @URLValue
15    String JavaDoc value();
16 }
17
Popular Tags