mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +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();
|
|
} |