📄 callback.java
字号:
import java.rmi.*;public interface CallBack extends Remote { /** The server notifies the client for taking a turn */ public void takeTurn(boolean turn) throws RemoteException; /** The server sends a message to be displayed by the client */ public void notify(java.lang.String message) throws RemoteException; /** The server notifies a client of the other player's move */ public void mark(int row, int column, char token) throws RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -