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

This commit is contained in:
peter
2011-11-21 17:46:45 +01:00
parent c2c0e72d7c
commit 613e6b58a0
12 changed files with 192 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
interface Foo_Intf {}
class FooClass {}
class Goo extends Foo<caret> {
int boo() {}
int doo() {}
int foo() {}
}

View File

@@ -0,0 +1,8 @@
interface FooIntf {}
class FooClass {}
class Goo implements Foo<caret> {
int boo() {}
int doo() {}
int foo() {}
}