mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
14 lines
196 B
Java
14 lines
196 B
Java
import javax.annotation.constraints.*;
|
|
|
|
interface Intf {
|
|
@NotNull Object foo(@NotNull Object p);
|
|
}
|
|
|
|
class Impl implements Intf {
|
|
@Override
|
|
public Object foo(Object p) {
|
|
return p;
|
|
}
|
|
|
|
}
|