All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.io.github.chengzis.ksp.Define.kt Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package io.github.chengzis.ksp

/**
 * 定义一个接口
 * - 不能在代码中使用
 * - 会被被注解处理器处理
 */
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.BINARY)
@RequiresOptIn(
    level = RequiresOptIn.Level.ERROR,
    message = "只能被注解处理器处理,不能在代码中使用",
)
@MustBeDocumented
annotation class Define




© 2015 - 2024 Weber Informatics LLC | Privacy Policy