Community
Participate
Working Groups
STEPS TO REPRO: 1. write the following classes: ### package a; import c.C; public interface I { <T> T getSomething(C<T> c); <T> void setSomething(C<T> c, T v); } ### package c; public interface C<T> { } ### package a.b; import a.I; public class A implements I { set| } 2. go to | and invoke code assist to override I.setSomething EXPECTED RESULT: package a.b; import a.I; import c.C; public class A implements I { @Override public <T> void setSomething(C<T> c, T v) { // TODO Stub di metodo generato automaticamente } } ACTUAL RESULT: package a.b; import a.I; public class A implements I { public <T> void setSomething(c.C<a.T> c, a.T v) {}; } Please note: 1) the missing @Override annotation 2) the missing method body stub 3) the trailing ";" 4) the notation a.T which is invalid 5) the missing import c.C and the useless fully-qualified use of c.C within the method parameter declaration
Ayush, please follow up.
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie.
This indeed works well in 2019-12.