Mercurial > hg > RemoteEditor > REPSessionManager
view rep/handler/PacketSet.java @ 217:4deaaaa6354e
*** empty log message ***
author | kono |
---|---|
date | Sun, 31 Aug 2008 00:26:35 +0900 |
parents | a097b1d619a1 |
children | 526ee0354067 |
line wrap: on
line source
package rep.handler; import rep.Editor; import rep.REPCommand; import rep.channel.ChannelSimulator; import rep.channel.REPSocketChannel; public class PacketSet { public REPSocketChannel<REPCommand> channel; public Editor editor; public REPCommand command; public PacketSet(REPSocketChannel<REPCommand> channel, Editor editor, REPCommand command) { this.channel = channel; this.editor = editor; this.command = command; } public Editor getEditor() { return editor; } }