mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +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,10 @@
|
||||
class Main {
|
||||
void foo() throws NoSuchMethodException {
|
||||
clazz().getMethod("<caret>");
|
||||
}
|
||||
private Class<? extends Test> clazz() {return Test.class;}
|
||||
}
|
||||
|
||||
class Test {
|
||||
public void method(){}
|
||||
}
|
||||
Reference in New Issue
Block a user