IDEA-26138 Import hint while typing: be more smart in "extends" - context

This commit is contained in:
peter
2011-11-21 17:47:44 +01:00
parent c2c0e72d7c
commit 613e6b58a0
12 changed files with 192 additions and 7 deletions
@@ -0,0 +1,8 @@
interface Foo_Intf {}
class FooClass {}
class Goo extends Foo<caret> {
int boo() {}
int doo() {}
int foo() {}
}
@@ -0,0 +1,8 @@
interface FooIntf {}
class FooClass {}
class Goo implements Foo<caret> {
int boo() {}
int doo() {}
int foo() {}
}