fetchable.java
来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 12 行
JAVA
12 行
//$Id: Fetchable.java,v 1.1.2.3 2003/11/06 13:43:22 oneovthafew Exp $
package net.sf.hibernate.mapping;
/**
* Any mapping with an outer-join attribute
* @author Gavin King
*/
public interface Fetchable {
public int getOuterJoinFetchSetting();
public void setOuterJoinFetchSetting(int joinedFetch);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?