JvmMultifileClass

@Target(allowedTargets = [AnnotationTarget.FILE])
expect annotation class JvmMultifileClass(source)

Instructs the Kotlin compiler to generate a multifile class with top-level functions and properties declared in this file as one of its parts. Name of the corresponding multifile class is provided by the JvmName annotation.

@Target(allowedTargets = [AnnotationTarget.FILE])
actual annotation class JvmMultifileClass

Instructs the Kotlin compiler to generate a multifile class with top-level functions and properties declared in this file as one of its parts. Name of the corresponding multifile class is provided by the JvmName annotation.

Constructors

Link copied to clipboard
expect fun JvmMultifileClass()
actual fun JvmMultifileClass()