This commit is contained in:
Dmitry Jemerov
2009-09-10 21:19:28 +04:00
parent d13d5f3ac8
commit 4e0b0c39af
56 changed files with 6 additions and 1 deletions
@@ -0,0 +1,20 @@
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){}
}