Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: $
2
package org.hibernate.annotations;
3
 
4
import java.lang.annotation.Retention;
5
import java.lang.annotation.ElementType;
6
import java.lang.annotation.RetentionPolicy;
7
 
8
/**
9
 * Define a set of tuplizer for an entity or a component
10
 * @author Emmanuel Bernard
11
 */
12
@java.lang.annotation.Target( {ElementType.TYPE, ElementType.FIELD, ElementType.METHOD} )
13
@Retention( RetentionPolicy.RUNTIME )
14
public @interface Tuplizers {
15
        Tuplizer[] value();
16
}