Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
package org.hibernate.annotations;
2
 
3
import static java.lang.annotation.ElementType.TYPE;
4
import java.lang.annotation.Retention;
5
import static java.lang.annotation.RetentionPolicy.RUNTIME;
6
import java.lang.annotation.Target;
7
 
8
/**
9
 * Plural of Table
10
 *
11
 * @author Emmanuel Bernard
12
 * @see Table
13
 */
14
@Target({TYPE})
15
@Retention(RUNTIME)
16
public @interface Tables {
17
        Table[] value();
18
}