01: // $Id: Table.java 12 2007-08-29 05:23:13Z jcamaia $
02:
03: package net.sf.persist.annotations;
04:
05: import java.lang.annotation.ElementType;
06: import java.lang.annotation.Retention;
07: import java.lang.annotation.RetentionPolicy;
08: import java.lang.annotation.Target;
09:
10: /**
11: * Defines a table mapping for a given class.
12: */
13: @Retention(RetentionPolicy.RUNTIME)
14: @Target(ElementType.TYPE)
15: public @interface Table {
16:
17: /**
18: * Name of the table mapped to the class.
19: */
20: String name();
21:
22: }
|