mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
140 B
Java
10 lines
140 B
Java
import java.util.List;
|
|
|
|
class A {
|
|
void method(List<String> y, boolean a){}
|
|
|
|
/// {@link #method(List, boolean)}
|
|
|
|
void bar() {}
|
|
}
|