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