package test; import org.jetbrains.annotations.*; public interface LoadIterableWithNullability { public @NotNull @Mutable Iterable getIterable(); public void setIterable(@Mutable @NotNull Iterable Iterable); public @NotNull @ReadOnly Iterable getReadOnlyIterable(); public void setReadOnlyIterable(@ReadOnly @NotNull Iterable Iterable); }