📄 customerhome.txt
字号:
import java.rmi.*;
import javax.ejb.*;
import java.util.*;
public interface CustomerHome extends EJBHome {
// 假设主接口从远程接口处扩展。
public Customer create( String customerName,
String customerPassword,String customerSex,
String customerDepartment,String customerInfo)
throws RemoteException,CreateException;
public Customer findByPrimaryKey(String primaryKey)
throws RemoteException,FinderException;
public Collection findAll()
throws RemoteException, FinderException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -