mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-25 08:31:32 +00:00
15 lines
687 B
Plaintext
15 lines
687 B
Plaintext
package test
|
|
|
|
public open class ClassObjectArrayInParam : java.lang.Object {
|
|
public constructor ClassObjectArrayInParam()
|
|
|
|
public final annotation class Anno : jet.Annotation {
|
|
public constructor Anno(/*0*/ vararg value: java.lang.Class<out jet.Any?> /*jet.Array<java.lang.Class<out jet.Any?>>*/)
|
|
public abstract fun value(): jet.Array<java.lang.Class<out jet.Any?>>?
|
|
}
|
|
|
|
test.ClassObjectArrayInParam.Anno(value = {test.ClassObjectArrayInParam?.class, test.ClassObjectArrayInParam.Nested?.class, jet.String?.class}: jet.Array<java.lang.Class<out jet.Any?>>) public open class Nested : java.lang.Object {
|
|
public constructor Nested()
|
|
}
|
|
}
|