// "Create Method 'get'" "true" class Generic { public T get() { return null; //To change body of created methods use File | Settings | File Templates. } } class WWW { void foo (Generic p) { E e = p.get(); } }