mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
9 lines
139 B
Java
9 lines
139 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
interface Foo {
|
|
void getTime(int a);
|
|
}
|
|
|
|
class Bar implements Foo {
|
|
public void getTime(int a) {}
|
|
} |