view src/pathfinder/mergetest/SelectionKeySimulator.java @ 151:1768e68ba98e

*** empty log message ***
author pin
date Tue, 05 Aug 2008 15:09:39 +0900
parents
children 6326e5ea4595
line wrap: on
line source

package pathfinder.mergetest;

public class SelectionKeySimulator<P> {

	public static final int OP_READ = 0;
	private ChannelSimulator<P> channel;

	public SelectionKeySimulator(ChannelSimulator<P> cs) {
		// TODO Auto-generated constructor stub
		channel = cs;
	}

	public boolean isAcceptable() {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean isReadable() {
		// TODO Auto-generated method stub
		return true;
	}

	public ChannelSimulator<P> channel() {
		// TODO Auto-generated method stub
		return channel;
	}

}