Mercurial > hg > RemoteEditor > REPSessionManager
view rep/EditorPlus.java @ 281:c3969dd625b2
GUIless test routine.
author | kono |
---|---|
date | Sat, 27 Sep 2008 22:55:13 +0900 |
parents | 291c62984ba0 |
children | dfed28488274 |
line wrap: on
line source
package rep; import rep.channel.REPSocketChannel; public class EditorPlus<P> { private int eid; private REPSocketChannel<P> channel; public EditorPlus(int eid, REPSocketChannel<P> channel) { this.eid = eid; this.channel = channel; } public String toString(){ return ("Editor:" + eid); } public int getEID(){ return eid; } public REPSocketChannel<P> getChannel(){ return channel; } }