⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rmiinterface.txt

📁 Icarnegie university SSD8电子书和全部练习答案
💻 TXT
字号:
www.pudn.com > Exercise4.rar > c


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