Mercurial > hg > RemoteEditor > REPSessionManager
view rep/REPActionEvent.java @ 18:b429fe1e15a8
*** empty log message ***
author | pin |
---|---|
date | Fri, 02 Nov 2007 15:40:40 +0900 |
parents | b774b87cc2c1 |
children | 291c62984ba0 |
line wrap: on
line source
package rep; import java.nio.channels.SocketChannel; public class REPActionEvent { private SocketChannel editorChannel; private int sid; private int eid; public REPActionEvent(EditorPlus plus, SessionPlus plus2) { // TODO Auto-generated constructor stub this.editorChannel = plus.getChannel(); this.eid = plus.getEID(); this.sid = plus2.getSID(); } public SocketChannel getEditorChannel() { // TODO Auto-generated method stub return editorChannel; } public int getSID() { // TODO Auto-generated method stub return sid; } public int getEID() { // TODO Auto-generated method stub return eid; } }