view rep/PacketSet.java @ 488:c49a86a7ab8f

termination of new merge command...
author one
date Thu, 21 Oct 2010 23:03:22 +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+")";
	}

}