~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-annotations-3.4.0.GA/src/org/hibernate/annotations/LazyCollection.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//$Id: LazyCollection.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
2
 
package org.hibernate.annotations;
3
 
 
4
 
import java.lang.annotation.Target;
5
 
import java.lang.annotation.Retention;
6
 
import java.lang.annotation.ElementType;
7
 
import java.lang.annotation.RetentionPolicy;
8
 
 
9
 
/**
10
 
 * Define the lazy status of a collection
11
 
 *
12
 
 * @author Emmanuel Bernard
13
 
 */
14
 
@Target({ElementType.METHOD, ElementType.FIELD})
15
 
@Retention(RetentionPolicy.RUNTIME)
16
 
public @interface LazyCollection {
17
 
        LazyCollectionOption value();
18
 
}