JavaCompilerCore/examples/hoti/IntfTest.jav

15 lines
165 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
interface Intf1{
}
interface Intf2{
}
class Gesucht implements Intf1, Intf2{
doSomething(){
}
}
class Test{
public test(x){
x.doSomething();
return(x);
}
}