Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created September 30, 2018 21:37
Show Gist options
  • Save adam-arold/30baa121176ef59fb4f28b573165a56c to your computer and use it in GitHub Desktop.
Save adam-arold/30baa121176ef59fb4f28b573165a56c to your computer and use it in GitHub Desktop.
public final class SomeClass {
// $FF: synthetic field
static final KProperty[] $$delegatedProperties = new KProperty[]{(KProperty)Reflection.mutableProperty1(new MutablePropertyReference1Impl(Reflection.getOrCreateKotlinClass(SomeClass.class), "someValue", "getSomeValue()Ljava/lang/String;"))};
@NotNull
private final ReadWriteProperty someValue$delegate = NotNullVarKt.notNull();
@NotNull
public final String getSomeValue() {
return (String)this.someValue$delegate.getValue(this, $$delegatedProperties[0]);
}
public final void setSomeValue(@NotNull String var1) {
Intrinsics.checkParameterIsNotNull(var1, "<set-?>");
this.someValue$delegate.setValue(this, $$delegatedProperties[0], var1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment