mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 18:14:57 +07:00
15 lines
208 B
Java
15 lines
208 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("<caret>");
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
public void method(){}
|
|
void method3(){}
|
|
}
|
|
|
|
class Parent {
|
|
public void method2(){}
|
|
void method4(){}
|
|
} |