Mercurial > hg > RemoteEditor > REPSessionManager
view rep/EditorPlus.java @ 287:1ff8bfc0a99a test-editor
*** empty log message ***
author | kono |
---|---|
date | Sun, 28 Sep 2008 15:46:36 +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; } }