📄 bookremotehome.java~45~
字号:
package test;import javax.ejb.*;import java.util.*;import java.rmi.*;public interface bookRemoteHome extends javax.ejb.EJBHome { public bookRemote create(String bookid, String baseprice, String name, String description) throws CreateException, RemoteException; public Collection findByName(String name) throws FinderException, RemoteException; public Collection findByDescription(String description) throws FinderException, RemoteException; public Collection findByBasePrice(double basePrice) throws FinderException, RemoteException; public Collection findExpensiveBooks(double minPrice) throws FinderException, RemoteException; public Collection findCheapBooks(double maxPrice) throws FinderException, RemoteException; public Collection findAllBooks() throws FinderException, RemoteException; public bookRemote findByPrimaryKey(String bookid) throws FinderException, RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -