KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > codehaus > aspectwerkz > annotation > Not


1 package org.codehaus.aspectwerkz.annotation;
2
3 import java.lang.annotation.Annotation JavaDoc;
4
5 /**
6  * @author <a HREF="mailto:alex@gnilux.com">Alexandre Vasseur</a>
7  */

8 public @interface Not {
9     Class JavaDoc<? extends Annotation> value(); // DOES NOT WORK!
10
}
11 //@interface And {
12
// String value();
13
//}
14
//
15
//
16
////@Not(
17
//// @And(
18
//// "Deprecated.class")
19
//// )
20
////class Foo {}
21
//
22
////@interface Gen{}
23
//
24
//@interface Ping {
25
// Pong value();
26
//}
27
//@interface Pong {//extends Gen{
28
// String value();
29
//}
30
//
31
//@Ping(
32
// @Pong("dd")
33
// )
34
//class Foo{}
35
Popular Tags