mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
23 lines
582 B
Java
Vendored
23 lines
582 B
Java
Vendored
import kotlin.Deprecated;
|
|
import kotlin.PropertyMetadata;
|
|
import kotlin.properties.ReadOnlyProperty;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
class J {
|
|
|
|
public static class Foo<T> implements ReadOnlyProperty<A<T>, B> {
|
|
public Foo(T t, @NotNull String s) {
|
|
}
|
|
|
|
@NotNull
|
|
@Deprecated
|
|
public B get(@NotNull A<T> thisRef, @NotNull PropertyMetadata property) {
|
|
return null;
|
|
}
|
|
|
|
@NotNull
|
|
public B getValue(@NotNull A<T> thisRef, @NotNull PropertyMetadata property) {
|
|
return null;
|
|
}
|
|
}
|
|
} |