// JVM_ANNOTATIONS package test; import kotlin.annotations.jvm.*; import org.jetbrains.annotations.NotNull; 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); }