CTCV2/app/src/main/java/kotlin/properties/ReadOnlyProperty.java

11 lines
225 B
Java

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