KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > annotations > Tables


1 package org.hibernate.annotations;
2
3 import static java.lang.annotation.ElementType.TYPE JavaDoc;
4 import static java.lang.annotation.RetentionPolicy.RUNTIME JavaDoc;
5 import java.lang.annotation.Target JavaDoc;
6 import java.lang.annotation.Retention JavaDoc;
7
8 /**
9  * Plural of Table
10  * @see Table
11  * @author Emmanuel Bernard
12  */

13 @Target JavaDoc({TYPE}) @Retention JavaDoc(RUNTIME)
14 public @interface Tables {
15     Table[] values();
16 }
17
Popular Tags