# HG changeset patch # User kono # Date 1219827808 -32400 # Node ID 5feb0abed370aa318e9ba68c2e6920d1a617fa97 # Parent b0179c726bd87f5c01fa95512ce899497afe9c9a *** empty log message *** diff -r b0179c726bd8 -r 5feb0abed370 rep/REPActionEvent.java --- a/rep/REPActionEvent.java Wed Aug 27 17:59:25 2008 +0900 +++ b/rep/REPActionEvent.java Wed Aug 27 18:03:28 2008 +0900 @@ -2,31 +2,29 @@ import java.nio.channels.SocketChannel; -public class REPActionEvent { +import rep.channel.REPSocketChannel; - private REPSocketChannel editorChannel; +public class REPActionEvent

{ + + private REPSocketChannel

editorChannel; private int sid; private int eid; - public REPActionEvent(EditorPlus plus, SessionPlus plus2) { - // TODO Auto-generated constructor stub + public REPActionEvent(EditorPlus

plus, SessionPlus

plus2) { this.editorChannel = plus.getChannel(); this.eid = plus.getEID(); this.sid = plus2.getSID(); } - public REPSocketChannel getEditorChannel() { - // TODO Auto-generated method stub + public REPSocketChannel

getEditorChannel() { return editorChannel; } public int getSID() { - // TODO Auto-generated method stub return sid; } public int getEID() { - // TODO Auto-generated method stub return eid; }