mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
Java: Improved completion for arguments of getField() and getMethod() - extract the type information from forName() and getClass() to provide code assistance (IDEA-167250)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
class Main {
|
||||
final Parent test = new Test();
|
||||
void foo() {
|
||||
test.getClass().getField("<caret>");
|
||||
}
|
||||
}
|
||||
|
||||
class Test extends Parent {
|
||||
public int num;
|
||||
int num2;
|
||||
}
|
||||
|
||||
class Parent {
|
||||
public int num3;
|
||||
int num4;
|
||||
}
|
||||
Reference in New Issue
Block a user