fundhome.java
来自「EJB+Struts+Webservice实现的开放式基金管理系统」· Java 代码 · 共 53 行
JAVA
53 行
package com.fund.fund;
import javax.ejb.EJBLocalHome;
import javax.ejb.CreateException;
import javax.ejb.FinderException;
import java.util.Collection;
/**
*
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public interface FundHome extends EJBLocalHome {
/**
*
* @param fundNo Integer
* @return Fund
* @throws CreateException e
*/
public Fund create(Integer fundNo) throws CreateException;
/**
*
* @param fundNo Integer
* @return Fund
* @throws FinderException e
*/
public Fund findByPrimaryKey(Integer fundNo) throws FinderException;
/**
*
* @param fundName String
* @return Fund
* @throws FinderException e
*/
public Fund findByName(String fundName) throws FinderException;
/**
*
* @return Collection
* @throws FinderException e
*/
public Collection findGetNormallFunds() throws FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?