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