public class T2 extends Thread{
	private C c;

	
	
	public T2(C c){
		this.c = c;
	}



	public void run(){
		/* You are only allowed to call methods
		 * that are exposed by the C class.
		 **/
	}
}
