14 lines
174 B
Plaintext
14 lines
174 B
Plaintext
|
public class MyInterface {
|
||
|
public String convert(String x, Integer mode){
|
||
|
return("");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public class Test{
|
||
|
public void test(x){
|
||
|
y;
|
||
|
z;
|
||
|
y=x.convert(z,1);
|
||
|
}
|
||
|
}
|