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