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