Mercurial > hg > RemoteEditor > REPSessionManager
view rep/EditorPlus.java @ 8:b774b87cc2c1
*** empty log message ***
author | pin |
---|---|
date | Fri, 19 Oct 2007 15:34:27 +0900 |
parents | |
children | 291c62984ba0 |
line wrap: on
line source
package rep; import java.nio.channels.SocketChannel; public class EditorPlus { private int eid; private SocketChannel channel; public EditorPlus(int eid, SocketChannel channel) { this.eid = eid; this.channel = channel; } public String toString(){ return ("Editor:" + eid); } public int getEID(){ return eid; } public SocketChannel getChannel(){ return channel; } }