commonMain.co.touchlab.skie.configuration.annotations.ExperimentalFeatures.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configuration-annotations-1.9.0-jvm Show documentation
Show all versions of configuration-annotations-1.9.0-jvm Show documentation
Annotations to configure SKIE behavior.
The newest version!
package co.touchlab.skie.configuration.annotations
@Target
annotation class ExperimentalFeatures {
/**
* Enables experimental features for the annotated declaration.
* Experimental features might not be fully implemented yet which may cause compilation problems.
* Has effect only if the experimental features are globally disabled.
*/
@Retention(AnnotationRetention.BINARY)
annotation class Enabled
/**
* Disables experimental features for the annotated declaration.
*/
@Retention(AnnotationRetention.BINARY)
annotation class Disabled
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy