mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
show static members of expected type in basic completion
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
public static final boolean FOX = true;
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
Super s = FO<caret>
|
||||
}
|
||||
|
||||
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
void foo(Super s, int a) {}
|
||||
void bar() {
|
||||
foo(FO<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
void foo(Super s, int a) {}
|
||||
void bar() {
|
||||
foo(Super.FOO<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
public static final boolean FOX = true;
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
Super s = Super.FOO<caret>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user