Mercurial > hg > RemoteEditor > REPSessionManager
view 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 source
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; } }