diff rep/handler/REPHandler.java @ 213:4d9b32666ed2

*** empty log message ***
author pin
date Sat, 30 Aug 2008 17:56:06 +0900
parents a097b1d619a1
children 526ee0354067
line wrap: on
line diff
--- a/rep/handler/REPHandler.java	Sat Aug 30 15:49:42 2008 +0900
+++ b/rep/handler/REPHandler.java	Sat Aug 30 17:56:06 2008 +0900
@@ -3,7 +3,10 @@
 import java.io.IOException;
 import java.nio.channels.SelectionKey;
 
+import rep.REPCommand;
+import rep.channel.REPSelectionKey;
+
 public interface REPHandler {
-	void handle(SelectionKey key)throws IOException;
+	void handle(REPSelectionKey<REPCommand> key)throws IOException;
 
 }