diff rep/handler/PacketSet.java @ 144:0bf7f8d0f5f7

*** empty log message ***
author pin
date Wed, 27 Aug 2008 22:55:43 +0900
parents
children bbd2801d8ce0
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rep/handler/PacketSet.java	Wed Aug 27 22:55:43 2008 +0900
@@ -0,0 +1,16 @@
+package rep.handler;
+
+import rep.REPCommand;
+import rep.channel.ChannelSimulator;
+
+public class PacketSet {
+
+	private ChannelSimulator<REPCommand> channel;
+	private REPCommand packet;
+
+	public PacketSet(ChannelSimulator<REPCommand> channel, REPCommand packet) {
+		this.channel = channel;
+		this.packet = packet;
+	}
+
+}