mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
test++
This commit is contained in:
+20
@@ -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){}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user