Mercurial > hg > RemoteEditor > REPSessionManager
view rep/EditorPlus.java @ 36:ec1cd5d388f3
UTF-8 TEST
author | fuchita |
---|---|
date | Sat, 10 Nov 2007 18:36:58 +0900 |
parents | b774b87cc2c1 |
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; } }