commonMain.co.touchlab.skie.configuration.annotations.FunctionInterop.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configuration-annotations-jvm Show documentation
Show all versions of configuration-annotations-jvm Show documentation
Annotations to configure SKIE behavior.
package co.touchlab.skie.configuration.annotations
@Target
annotation class FunctionInterop {
@Target
annotation class FileScopeConversion {
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.BINARY)
annotation class Enabled
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.BINARY)
annotation class Disabled
}
/**
* See [co.touchlab.skie.configuration.FunctionInterop.LegacyName]
*/
@Target
annotation class LegacyName {
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.CONSTRUCTOR)
@Retention(AnnotationRetention.BINARY)
annotation class Enabled
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.CONSTRUCTOR)
@Retention(AnnotationRetention.BINARY)
annotation class Disabled
}
}