all possible class names should be a valid lookup strings when completing an inner class after new

This commit is contained in:
peter
2011-11-08 17:08:41 +01:00
parent 778ab50cd3
commit 79f82fec64
4 changed files with 36 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
public class JavaClass {
{
Outer.Boo b = new Outer.Boo();<caret>
}
}
class Outer {
static class Boo { }
}
class ABooImpl extends Outer.Boo { }

View File

@@ -0,0 +1,12 @@
public class JavaClass {
{
Outer.Boo b = new B<caret>
}
}
class Outer {
static class Boo { }
}
class ABooImpl extends Outer.Boo { }