interface Generic { SomeGeneric foo(); } class II implements Generic { public SomeGeneric foo() { return null; //To change body of implemented methods use File | Settings | File Templates. } } class SomeGeneric

{ }