# HG changeset patch
# User kono
# Date 1219827565 -32400
# Node ID b0179c726bd87f5c01fa95512ce899497afe9c9a
# Parent  291c62984ba0a2a8d3b75cb26d095aac9aff5569
*** empty log message ***

diff -r 291c62984ba0 -r b0179c726bd8 rep/REPActionEvent.java
--- a/rep/REPActionEvent.java	Wed Aug 27 17:58:09 2008 +0900
+++ b/rep/REPActionEvent.java	Wed Aug 27 17:59:25 2008 +0900
@@ -1,28 +1,32 @@
 package rep;
 
-import rep.channel.REPSocketChannel;
+import java.nio.channels.SocketChannel;
 
-public class REPActionEvent<P> {
+public class REPActionEvent {
 
-	private REPSocketChannel<P> editorChannel;
+	private REPSocketChannel editorChannel;
 	private int sid;
 	private int eid;
 
-	public REPActionEvent(EditorPlus<P> plus, SessionPlus plus2) {
+	public REPActionEvent(EditorPlus plus, SessionPlus plus2) {
+		// TODO Auto-generated constructor stub
 		this.editorChannel = plus.getChannel();
 		this.eid = plus.getEID();
 		this.sid = plus2.getSID();
 	}
 
-	public REPSocketChannel<P> getEditorChannel() {
+	public REPSocketChannel 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;
 	}