mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
11 lines
252 B
Java
11 lines
252 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class B {
|
|
public final A myDelegate = new A();
|
|
|
|
@Nullable
|
|
public Object methodFromA(@NotNull String s) {
|
|
return myDelegate.methodFromA(s);
|
|
}
|
|
} |