mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
17 lines
262 B
Java
17 lines
262 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("method2");
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
public void method(){}
|
|
void method3(){}
|
|
private void method5(){}
|
|
}
|
|
|
|
class Parent {
|
|
public void method2(){}
|
|
void method4(){}
|
|
private void method6(){}
|
|
} |