// "Create Method 'get'" "true" class W { public T get(T s) { return null; //To change body of created methods use File | Settings | File Templates. } } class C { void foo () { W w = new W(); String s = w.get(""); } }