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

tech.carcadex.kotlinbukkitkit.exposed.delegate.ExposedDelegate.kt Maven / Gradle / Ivy

The newest version!
package tech.carcadex.kotlinbukkitkit.exposed.delegate

import org.jetbrains.exposed.dao.Entity
import kotlin.reflect.KProperty

public interface ExposedDelegate {

    public operator fun > getValue(
        entity: Entity,
        desc: KProperty<*>,
    ): T

    public operator fun > setValue(
        entity: Entity,
        desc: KProperty<*>,
        value: T,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy