view rep/PacketSet.java @ 382:4b87f89b3afd

REP Session Manager (Java version) new structure
author one@firefly.cr.ie.u-ryukyu.ac.jp
date Mon, 10 Nov 2008 22:07:45 +0900
parents
children 29f01a7ce71f
line wrap: on
line source

package rep;

import rep.channel.REPSocketChannel;
import rep.handler.REPNode;

public class PacketSet {

	public REPSocketChannel<REPCommand> channel;
	public REPNode editor;
	public REPCommand command;

	public PacketSet(REPSocketChannel<REPCommand> channel, REPNode editor, REPCommand command) {
		this.channel = channel;
		this.editor = editor;
		this.command = command;
	}

	public REPNode getEditor() {
		return editor;
	}
	

}