Mercurial > hg > RemoteEditor > REPSessionManager
view rep/EditorPlus.java @ 144:0bf7f8d0f5f7
*** empty log message ***
author | pin |
---|---|
date | Wed, 27 Aug 2008 22:55:43 +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; } }