mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
235 B
Java
17 lines
235 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("<caret>");
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
public Test() {}
|
|
Test(int n) {}
|
|
public void method(){}
|
|
void method(A a, B b){}
|
|
public void method(C c){}
|
|
}
|
|
|
|
class A {}
|
|
class B {}
|
|
class C {} |