view rep/Editor.java @ 18:b429fe1e15a8

*** empty log message ***
author pin
date Fri, 02 Nov 2007 15:40:40 +0900
parents 02fa9a68d9a2
children 2d4bab638a71
line wrap: on
line source

package rep;

import java.nio.channels.SocketChannel;

public class Editor {
	private int editorNo;
	private SocketChannel channel;
	private SocketChannel nextChannel;

	public Editor(int editorNo, SocketChannel channel){
		this.editorNo = editorNo;
		this.channel = channel;
	}

	public SocketChannel getChannel() {
		return channel;
	}
}