mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 00:22:16 +07:00
21 lines
317 B
Java
21 lines
317 B
Java
public interface Test {
|
|
void foo(Param param);
|
|
|
|
public static class Param {
|
|
private final String s;
|
|
|
|
public Param(String s) {
|
|
this.s = s;
|
|
}
|
|
|
|
public String getS() {
|
|
return s;
|
|
}
|
|
}
|
|
}
|
|
|
|
class TestImpl implements Test {
|
|
void foo(Param param){}
|
|
}
|
|
|