booksession.java
来自「第一步:将MyBookApp目录复制到C:下。 第二步:将book.mdb复制」· Java 代码 · 共 39 行
JAVA
39 行
/* * BookSession.java * * Created on 2003年5月13日, 下午3:51 *//** * * @author administrator */import javax.ejb.EJBObject;import java.rmi.RemoteException;import java.util.*;public interface BookSession extends EJBObject {//business method public Vector getAllBook(String str) throws RemoteException; public Vector getQueryBook(String str) throws RemoteException; public Vector getBorrowedBook(String str) throws RemoteException; public Vector getQueryBorrowedBook(String str) throws RemoteException; public int borrowBook(String str) throws RemoteException; public int returnBook(String str) throws RemoteException; public int checkUser(String userName,String userPassword) throws RemoteException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?