mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Support parameter annotations. Fix class path and test data
This commit is contained in:
@@ -1,9 +1,13 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterable<T> : java.lang.Object {
|
||||
public fun getIterable(): MutableIterable<T>?
|
||||
public fun setIterable(p0: MutableIterable<T>?)
|
||||
import org.jetbrains.annotations.*
|
||||
|
||||
public trait LoadIterable<T> : java.lang.Object {
|
||||
Mutable
|
||||
public fun getIterable(): MutableIterable<T>?
|
||||
public fun setIterable([Mutable] p0: MutableIterable<T>?)
|
||||
|
||||
ReadOnly
|
||||
public fun getReadOnlyIterable(): Iterable<T>?
|
||||
public fun setReadOnlyIterable(p0: Iterable<T>?)
|
||||
public fun setReadOnlyIterable([ReadOnly] p0: Iterable<T>?)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user