jvmMain.com.bkahlert.kommons.debug.reflect.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-debug Show documentation
Show all versions of kommons-debug Show documentation
Kommons Debug is a Kotlin Multiplatform Library for print debugging.
package com.bkahlert.kommons.debug
import java.lang.reflect.AccessibleObject
/** Alias for [AccessibleObject.isAccessible] */
public var AccessibleObject.accessible: Boolean
get() {
@Suppress("DEPRECATION")
return isAccessible
}
set(value) {
@Suppress("DEPRECATION")
isAccessible = value
}