// "Add 'Foo' as 1st parameter to method 'bar'" "true" public class Bar { static void bar(Foo typeParamNameFoo, String args) { } } class Foo { void bar() { Bar.bar(this, ""); } }