📄 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 + -