Mercurial > hg > RemoteEditor > REPSessionManager
view rep/REPActionEvent.java @ 115:b5062811066c
*** empty log message ***
author | pin |
---|---|
date | Sun, 23 Dec 2007 15:27:58 +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; } }