Mercurial > hg > RemoteEditor > REPSessionManager
view rep/PacketSet.java @ 485:cc262a519b8a
add dead lock detection (don't forget remove )
author | one |
---|---|
date | Wed, 20 Oct 2010 22:59:19 +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+")"; } }