?? ejbaccountshome.java~20~
字號:
package sqlaccounts;import javax.ejb.*;import java.util.*;import java.rmi.*;public interface EjbAccountsHome extends javax.ejb.EJBHome { public Collection findByType(String Type) throws FinderException, RemoteException; public EjbAccounts findByPrimaryKey(String id) throws FinderException, RemoteException; public EjbAccounts create(String Id) throws CreateException, RemoteException; public EjbAccounts create(String id, String Type, Float bal) throws CreateException, RemoteException; public EjbAccounts create(String id, String Type, double bal) throws CreateException, RemoteException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -