Skip to content

Instantly share code, notes, and snippets.

@MasoudFallahpour
Created July 23, 2022 13:48
Show Gist options
  • Save MasoudFallahpour/3fb639797e131c364d167f8ca5ce7e79 to your computer and use it in GitHub Desktop.
Save MasoudFallahpour/3fb639797e131c364d167f8ca5ce7e79 to your computer and use it in GitHub Desktop.
public final class User {
// $FF: synthetic field
static final KProperty[] $$delegatedProperties = new KProperty[]{(KProperty)Reflection.mutableProperty1(new MutablePropertyReference1Impl(User.class, "firstName", "getFirstName()Ljava/lang/String;", 0)), (KProperty)Reflection.mutableProperty1(new MutablePropertyReference1Impl(User.class, "lastName", "getLastName()Ljava/lang/String;", 0))};
@NotNull
private final Delegate firstName$delegate = new Delegate();
@NotNull
private final Delegate lastName$delegate = new Delegate();
@NotNull
public final String getFirstName() {
return this.firstName$delegate.getValue(this, $$delegatedProperties[0]);
}
public final void setFirstName(@NotNull String var1) {
Intrinsics.checkNotNullParameter(var1, "<set-?>");
this.firstName$delegate.setValue(this, $$delegatedProperties[0], var1);
}
@NotNull
public final String getLastName() {
return this.lastName$delegate.getValue(this, $$delegatedProperties[1]);
}
public final void setLastName(@NotNull String var1) {
Intrinsics.checkNotNullParameter(var1, "<set-?>");
this.lastName$delegate.setValue(this, $$delegatedProperties[1], var1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment