mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
16 lines
193 B
Java
16 lines
193 B
Java
interface I {
|
|
void setBar(int o);
|
|
}
|
|
|
|
interface Foo {
|
|
void setBar(int bar);
|
|
}
|
|
|
|
class Bar implements Foo, I {
|
|
int bar;
|
|
|
|
@Override
|
|
public void setBar(int bar) {
|
|
this.bar = bar;
|
|
}
|
|
} |