?? chatserver.java
字號:
/*
* Created on 2004-11-27
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package chat;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* @author Lance
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public interface ChatServer extends Remote{
/**
* 注冊新的用戶
*/
public void login(String name, Chatter chatter)
throws RemoteException;
/**
*用戶退出
*/
public void logout(String name)throws RemoteException;
/**
*用戶調(diào)用此方法把消息發(fā)送給所有用戶
*/
public void chat(String name, String message)
throws RemoteException;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -