make smart completion work in java extends/implements clauses (IDEA-38166)

This commit is contained in:
peter
2015-12-29 18:00:59 +01:00
parent 16fb4e8473
commit 2fff9c497b
5 changed files with 39 additions and 16 deletions
@@ -0,0 +1,7 @@
public class Main implements XFooIntf<caret> {
}
class XFoo1 {}
class XFoo2 {}
interface XFooIntf {}
@@ -0,0 +1,7 @@
public class Main implements XF<caret> {
}
class XFoo1 {}
class XFoo2 {}
interface XFooIntf {}