/*
 * Created on Dec 8, 2006
 *
 * 
 */

public class B {
	
	public void b(A a) {
//		System.out.println("b");
		a.a(this);
	}

}
