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