Created
April 17, 2017 19:45
-
-
Save vgonda/51848c0b859668f73a66d7884ed9d184 to your computer and use it in GitHub Desktop.
Decompiled Kotlin User Class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class User { | |
@NotNull | |
private final String firstName; | |
@Nullable | |
private String lastName; | |
public User(@NotNull String firstName, @Nullable String lastName) { | |
Intrinsics.checkParameterIsNotNull(firstName, "firstName"); | |
super(); | |
this.firstName = firstName; | |
this.lastName = lastName; | |
} | |
@NotNull | |
public final String getFirstName() { | |
return this.firstName; | |
} | |
@Nullable | |
public final String getLastName() { | |
return this.lastName; | |
} | |
public final void setLastName(@Nullable String var1) { | |
this.lastName = var1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment