Mercurial > hg > RemoteEditor > REPSessionManager
view rep/PacketSet.java @ 491:5945266c970d
before unMergedCmds fix , deadlockTimer API
author | one |
---|---|
date | Sat, 23 Oct 2010 12:34:46 +0900 |
parents | 21cb16b7f3df |
children |
line wrap: on
line source
package rep; import rep.handler.REPNode; public class PacketSet { public REPNode channel; public REPCommand command; public PacketSet(REPNode editor, REPCommand command) { this.channel = editor; this.command = command; } public REPNode getEditor() { return channel; } public String toString() { return "PacketSet("+command.toString()+","+channel+")"; } }