?? booksession.java
字號:
/* * 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -