Files
openide/java/java-tests/testData/codeInsight/completion/reflection/InheritedDeclaredMethod.java

17 lines
270 B
Java

class Main {
void foo() {
Test.class.getDeclaredMethod("<caret>");
}
}
class Test extends Parent {
public void method(){}
void method3(){}
private void method5(){}
}
class Parent {
public void method2(){}
void method4(){}
private void method6(){}
}