1 package org.hibernate.annotations;2 3 import static java.lang.annotation.ElementType.TYPE ;4 import static java.lang.annotation.RetentionPolicy.RUNTIME ;5 import java.lang.annotation.Target ;6 import java.lang.annotation.Retention ;7 8 /**9 * Plural of Table10 * @see Table11 * @author Emmanuel Bernard12 */13 @Target ({TYPE}) @Retention (RUNTIME)14 public @interface Tables {15 Table[] values();16 }17