mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
12 lines
158 B
Java
12 lines
158 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
interface Foo {
|
|
long getTime();
|
|
}
|
|
|
|
class Bar implements Foo {
|
|
@Override
|
|
public long getTime() {
|
|
return 0;
|
|
}
|
|
} |