?? addresseshome.java
字號:
package address;import java.rmi.*;import javax.ejb.*;import java.util.Collection;//Addresses EJB的Home接口public interface AddressesHome extends EJBHome { public Addresses create(String firstName, String lastName, String address, String city, String state, String zip) throws RemoteException, CreateException; public Addresses create(String firstName, String lastName) throws RemoteException, CreateException; public Addresses findByPrimaryKey(AddressesPK primaryKey) throws RemoteException, FinderException; public Collection findAll() throws RemoteException, FinderException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -