view rep/EditorPlus.java @ 182:e5a7aad3fbc0

*** empty log message ***
author pin
date Fri, 29 Aug 2008 13:35:49 +0900
parents 291c62984ba0
children dfed28488274
line wrap: on
line source

package rep;

import rep.channel.REPSocketChannel;

public class EditorPlus<P> {

	private int eid;
	private REPSocketChannel<P> channel;
	public EditorPlus(int eid, REPSocketChannel<P> channel) {
		this.eid = eid;
		this.channel = channel;
	}
	public String toString(){
		return ("Editor:" + eid);
	}
	public int getEID(){
		return eid;
	}
	public REPSocketChannel<P> getChannel(){
		return channel;
		
	}
}