changeset 127:b0179c726bd8

*** empty log message ***
author kono
date Wed, 27 Aug 2008 17:59:25 +0900
parents 291c62984ba0
children 5feb0abed370
files rep/REPActionEvent.java
diffstat 1 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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;
 	}