comparison rep/SelectButtonEvent.java @ 227:cbd67817e9cd

*** empty log message ***
author pin
date Sun, 31 Aug 2008 13:55:39 +0900
parents 18d6a7140fa3
children a91d04a13d59
comparison
equal deleted inserted replaced
226:e4ed00c82422 227:cbd67817e9cd
7 private REPSocketChannel<P> editorChannel; 7 private REPSocketChannel<P> editorChannel;
8 private int sid; 8 private int sid;
9 private int eid; 9 private int eid;
10 private SessionManager manager; 10 private SessionManager manager;
11 11
12 public SelectButtonEvent(EditorPlus<P> plus, SessionPlus plus2, SessionManagerEventListener listener) { 12 public SelectButtonEvent(EditorPlus<P> editor, SessionPlus session, SessionManagerEventListener listener) {
13 this.editorChannel = plus.getChannel(); 13 this.editorChannel = editor.getChannel();
14 this.eid = plus.getEID(); 14 this.eid = editor.getEID();
15 this.sid = plus2.getSID(); 15 this.sid = session.getSID();
16 this.manager = (SessionManager)listener; 16 this.manager = (SessionManager)listener;
17 } 17 }
18 18
19 public REPSocketChannel<P> getEditorChannel() { 19 public REPSocketChannel<P> getEditorChannel() {
20 return editorChannel; 20 return editorChannel;