disprefer *Impl classes in completion

This commit is contained in:
peter.gromov
2010-11-12 22:46:37 +03:00
parent d41960f342
commit b9cf99f554
9 changed files with 53 additions and 41 deletions
@@ -0,0 +1,11 @@
public class Aaaaaaa {
private final String aaa;
Aaaaaaa(Object aabbb) {
Xx<caret>
}
}
class XxxImpl {}
class Xxy {}
@@ -0,0 +1,11 @@
public class Aaaaaaa {
private final String aaa;
Aaaaaaa(Object aabbb) {
new Xx<caret>
}
}
class XxxImpl {}
class Xxy {}
@@ -1,14 +0,0 @@
package zzzzz;
public class Holder {
{
Foo foo = null;
if (foo instanceof <caret>)
}
}
interface Foo {}
interface IFoo extends Foo {}
abstract class Goo implements IFoo {}
class Bar extends Goo {}