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

📄 userhome.java

📁 第一步:将MyBookApp目录复制到C:下。 第二步:将book.mdb复制到C:下。 第三步:配制ODBC数据源
💻 JAVA
字号:
/* * UserHome.java * * Created on 2003年5月13日, 上午10:04 *//** * * @author  administrator */import java.util.*;import java.rmi.RemoteException;import javax.ejb.*;public interface UserHome extends EJBHome {//home method        //create a user.we don't use for this programm.    public User create()        throws RemoteException, CreateException;        //find the user with the specific PrimaryKey    public User findByPrimaryKey(String id)         throws FinderException, RemoteException;        //find the book with the specific bookName    public Collection findByUserName(String userName)        throws FinderException, RemoteException;         }

⌨️ 快捷键说明

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