?? producthome.java
字號:
import java.util.Collection;import java.rmi.RemoteException;import javax.ejb.*;public interface ProductHome extends EJBHome { public Product create(String productId, String description, double balance) throws RemoteException, CreateException; public Product findByPrimaryKey(String productId) throws FinderException, RemoteException; public Collection findByDescription(String description) throws FinderException, RemoteException; public Collection findInRange(double low, double high) throws FinderException, RemoteException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -