mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
18 lines
305 B
Java
18 lines
305 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Bar {
|
|
|
|
void navigateTo() {
|
|
Computable c = new Computable() {
|
|
@Nullable
|
|
public Object compute() {
|
|
return null;
|
|
}
|
|
};
|
|
}
|
|
|
|
}
|
|
|
|
interface Computable {
|
|
@Nullable Object compute();
|
|
} |