// "Make 'a' implement 'b'" "true" class a implements b { void f(b r) { r.g(this); } public void g(b t) { //To change body of implemented methods use File | Settings | File Templates. } } interface b { void g(b t); }