Mercurial > hg > RemoteEditor > REPSessionManager
view rep/handler/PacketSet.java @ 281:c3969dd625b2
GUIless test routine.
author | kono |
---|---|
date | Sat, 27 Sep 2008 22:55:13 +0900 |
parents | 526ee0354067 |
children |
line wrap: on
line source
package rep.handler; import rep.Editor; import rep.REPCommand; 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; } }