commonMain.io.mths.kava.GenerateExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kava-annotations-jvm Show documentation
Show all versions of kava-annotations-jvm Show documentation
Annotations to generate extensions for custom validators
The newest version!
package io.mths.kava
/**
* Custom validators marked with this annotation will be used to generate
* - a scope function called [scopeName]
* - snowflake extensions
* - validated delegations
*
*/
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.CLASS)
annotation class GenerateExtensions(
val scopeName: String
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy