KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > mapping > Fetchable


1 //$Id: Fetchable.java,v 1.3 2005/04/28 08:35:10 oneovthafew Exp $
2
package org.hibernate.mapping;
3
4 import org.hibernate.FetchMode;
5
6 /**
7  * Any mapping with an outer-join attribute
8  * @author Gavin King
9  */

10 public interface Fetchable {
11     public FetchMode getFetchMode();
12     public void setFetchMode(FetchMode joinedFetch);
13     public boolean isLazy();
14     public void setLazy(boolean lazy);
15 }
16
Popular Tags