⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 borrowhome.java

📁 Java实现的图书管理系统
💻 JAVA
字号:
/* * BorrowHome.java * * Created on 2003年5月13日, 上午11:46 *//** * * @author  administrator */import java.util.*;import java.rmi.RemoteException;import javax.ejb.*;public interface BorrowHome extends EJBHome {//home method        //create a borrow record.    public Borrow create(String userName,String bookId)        throws RemoteException, CreateException;        //find the borrow record with the specific PrimaryKey    public Borrow findByPrimaryKey(String id)         throws FinderException, RemoteException;        //find the borrow records with the specific bookName    public Collection findByUserName(String userName)        throws FinderException, RemoteException;        public Collection findByUserNameBookId(String userName,String bookId)        throws FinderException, RemoteException;            }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -