mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
12 lines
322 B
Java
12 lines
322 B
Java
package test;
|
|
|
|
import org.jetbrains.annotations.*;
|
|
|
|
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);
|
|
}
|