📄 bookhome.java
字号:
/* * BookHome.java * * Created on 2003年5月12日, 下午10:00 *//** * * @author administrator */import java.util.*;import java.rmi.RemoteException;import javax.ejb.*;public interface BookHome extends EJBHome {//home method //create a book.we don't use for this programm. public Book create() throws RemoteException, CreateException; //find the book with the specific PrimaryKey public Book findByPrimaryKey(String id) throws FinderException, RemoteException; //find the book with the specific bookName public Collection findByBookName(String bookName) throws FinderException, RemoteException; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -