mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-06 15:51:57 +00:00
It was supposed to be used in reflection but the benefits do not outweigh the cost of KT-6951 #KT-3223 Fixed #KT-6951 Fixed
23 lines
672 B
Java
23 lines
672 B
Java
public interface TraitClassObjectField {
|
|
TraitClassObjectField.Default Default;
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
@java.lang.Deprecated
|
|
TraitClassObjectField.Default OBJECT$;
|
|
@org.jetbrains.annotations.Nullable
|
|
java.lang.String x = "";
|
|
|
|
static final class Default {
|
|
@org.jetbrains.annotations.Nullable
|
|
private final java.lang.String x = "";
|
|
private final java.lang.String y = "";
|
|
|
|
@org.jetbrains.annotations.Nullable
|
|
public final java.lang.String getX() { /* compiled code */ }
|
|
|
|
private final java.lang.String getY() { /* compiled code */ }
|
|
|
|
private Default() { /* compiled code */ }
|
|
}
|
|
} |