blob: ad1c387d02b5529912a363f453d99d0887c0fa74 [file]
// WITH_KOTLIN_JVM_ANNOTATIONS
package test;
import kotlin.annotations.jvm.*;
import org.jetbrains.annotations.NotNull;
public interface LoadIterableWithNullability<T> {
public @NotNull @Mutable Iterable<T> getIterable();
public void setIterable(@Mutable @NotNull Iterable<T> Iterable);
public @NotNull @ReadOnly Iterable<T> getReadOnlyIterable();
public void setReadOnlyIterable(@ReadOnly @NotNull Iterable<T> Iterable);
}