mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
Support parameter annotations. Fix class path and test data
This commit is contained in:
@@ -3,10 +3,10 @@ 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
|
||||
org.jetbrains.annotations.Mutable() public abstract fun getIterable(): jet.MutableIterable<T>?
|
||||
org.jetbrains.annotations.ReadOnly() public abstract fun getReadOnlyIterable(): jet.Iterable<T>?
|
||||
public abstract fun setIterable(/*0*/ org.jetbrains.annotations.Mutable() p0: jet.MutableIterable<T>?): jet.Unit
|
||||
public abstract fun setReadOnlyIterable(/*0*/ org.jetbrains.annotations.ReadOnly() p0: jet.Iterable<T>?): jet.Unit
|
||||
}
|
||||
|
||||
public open class LoadIterableImpl</*0*/ T> : test.LoadIterableWithPropagation.LoadIterable<T> {
|
||||
|
||||
Reference in New Issue
Block a user