IDEA-99186 Ctrl+Space help when implementing/overriding methods

This commit is contained in:
peter
2013-02-01 17:40:54 +01:00
parent 1cfd13945c
commit 53a305b847
7 changed files with 195 additions and 10 deletions
@@ -0,0 +1,7 @@
interface Foo<T> {
void run(T t, int myInt);
}
public class A implements Foo<String> {
p<caret>
}