remoteinterface.java
来自「网络聊天」· Java 代码 · 共 14 行
JAVA
14 行
package server;
//定义接口RemoteInterface
import java.rmi.*;
public interface RemoteInterface extends Remote {
public void setChatText(String bid) throws RemoteException;
public String getChatText() throws RemoteException;
public void registerForNotinfication(Notifiable n) throws RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?