annotate rep/handler/PacketSet.java @ 144:0bf7f8d0f5f7
*** empty log message ***
author |
pin |
date |
Wed, 27 Aug 2008 22:55:43 +0900 |
parents |
|
children |
bbd2801d8ce0 |
rev |
line source |
144
|
1 package rep.handler;
|
|
2
|
|
3 import rep.REPCommand;
|
|
4 import rep.channel.ChannelSimulator;
|
|
5
|
|
6 public class PacketSet {
|
|
7
|
|
8 private ChannelSimulator<REPCommand> channel;
|
|
9 private REPCommand packet;
|
|
10
|
|
11 public PacketSet(ChannelSimulator<REPCommand> channel, REPCommand packet) {
|
|
12 this.channel = channel;
|
|
13 this.packet = packet;
|
|
14 }
|
|
15
|
|
16 }
|