Mercurial > hg > RemoteEditor > REPSessionManager
view rep/Editor.java @ 1:3f5bf0255f5e
*** empty log message ***
author | pin |
---|---|
date | Wed, 21 Feb 2007 15:08:52 +0900 |
parents | |
children | 02fa9a68d9a2 |
line wrap: on
line source
package rep; import java.nio.channels.SocketChannel; public class Editor { private int editorNo; private SocketChannel channel; public Editor(int editorNo, SocketChannel channel){ this.editorNo = editorNo; this.channel = channel; } public SocketChannel getChannel() { return channel; } }