HHH-6171 Javadoc changes

This commit is contained in:
Hardy Ferentschik 2011-05-03 16:53:36 +02:00
parent d48010643b
commit 46f5022b60
1 changed files with 7 additions and 4 deletions

View File

@ -22,6 +22,7 @@
* Boston, MA 02110-1301 USA
*/
package org.hibernate.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@ -31,9 +32,11 @@ import java.lang.annotation.RetentionPolicy;
*
* @author Shawn Clowater
*/
@java.lang.annotation.Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Retention( RetentionPolicy.RUNTIME )
@java.lang.annotation.Target( { ElementType.TYPE, ElementType.METHOD, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface Persister {
/** Custom persister */
Class impl();
/**
* @return The custom persister class
*/
Class<?> impl();
}