package kotlin.properties; import kotlin.reflect.KProperty; import lanchon.dexpatcher.annotation.DexIgnore; @DexIgnore public interface ReadOnlyProperty { @DexIgnore V getValue(T t, KProperty kProperty); }