KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > persistence > EntityListener


1 package javax.persistence;
2
3 import java.lang.annotation.*;
4 import static java.lang.annotation.ElementType JavaDoc.*;
5 import static java.lang.annotation.RetentionPolicy JavaDoc.*;
6
7 @Target({TYPE})
8 @Retention(RUNTIME)
9 public @interface EntityListener {
10     String JavaDoc value();
11 }
Popular Tags