?? customerhome.java
字號(hào):
package apusic.myshop.customer.ejb;import java.util.Collection;import java.rmi.RemoteException;import javax.ejb.CreateException;import javax.ejb.FinderException;import javax.ejb.EJBHome;public interface CustomerHome extends EJBHome { public Customer create( String userId, String password, String name, String sex, String company, String cid, String address, String province, String city, String zip, String phone, String email, java.sql.Date regDate ) throws RemoteException, CreateException; public Customer findByUserId(String userId) throws RemoteException, FinderException; public Collection findCustomers(String userId, String name, String province, String city) throws RemoteException, FinderException;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -