mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
16 lines
200 B
Java
16 lines
200 B
Java
interface I {
|
|
void setFoo(int o);
|
|
}
|
|
|
|
interface Foo {
|
|
void setFoo(int foo);
|
|
}
|
|
|
|
class Bar implements Foo, I {
|
|
int fo<caret>o;
|
|
|
|
@Override
|
|
public void setFoo(int foo) {
|
|
this.foo = foo;
|
|
}
|
|
} |