?? rmiinterface.java
字號:
import java.rmi.*;
import java.util.*;
public interface RMIInterface extends Remote {
public boolean login(String username, String password)throws RemoteException;
public boolean register(String username, String password)throws RemoteException;
public boolean add(String username, String password, String otherusername,String title, Date start, Date end) throws RemoteException;
public boolean delete(String username, String password, int id)throws RemoteException;
public boolean clear(String username, String password)throws RemoteException;
public Vector<Meeting> query(String username, String password, Date start,Date end) throws RemoteException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -