Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/mutability/LoadIterableWithPropagation.txt
2013-04-29 15:44:07 +04:00

20 lines
972 B
Plaintext

package test
public trait LoadIterableWithPropagation : java.lang.Object {
public trait LoadIterable</*0*/ T> : java.lang.Object {
public abstract fun getIterable(): jet.MutableIterable<T>?
public abstract fun getReadOnlyIterable(): jet.Iterable<T>?
public abstract fun setIterable(/*0*/ p0: jet.MutableIterable<T>?): jet.Unit
public abstract fun setReadOnlyIterable(/*0*/ p0: jet.Iterable<T>?): jet.Unit
}
public open class LoadIterableImpl</*0*/ T> : test.LoadIterableWithPropagation.LoadIterable<T> {
public constructor LoadIterableImpl</*0*/ T>()
public open override /*1*/ fun getIterable(): jet.MutableIterable<T>?
public open override /*1*/ fun getReadOnlyIterable(): jet.Iterable<T>?
public open override /*1*/ fun setIterable(/*0*/ p0: jet.MutableIterable<T>?): jet.Unit
public open override /*1*/ fun setReadOnlyIterable(/*0*/ p0: jet.Iterable<T>?): jet.Unit
}
}