Skip to content

Instantly share code, notes, and snippets.

@Concers
Last active January 12, 2021 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Concers/c21e7a24561b60981892285daef88b2d to your computer and use it in GitHub Desktop.
Save Concers/c21e7a24561b60981892285daef88b2d to your computer and use it in GitHub Desktop.
public final class FavoriteAuthor {
@Nullable
private String name;
@Nullable
private String lastname;
@Nullable
public final String getName() {
return this.name;
}
public final void setName(@Nullable String var1) {
this.name = var1;
}
@Nullable
public final String getLastname() {
return this.lastname;
}
public final void setLastname(@Nullable String var1) {
this.lastname = var1;
}
}
public final class FavoriteAuthorKt {
public static final void main() {
FavoriteAuthor favoriteauthor = new FavoriteAuthor();
favoriteauthor.setName("Franz");
favoriteauthor.setLastname("kafka");
String var1 = "Favorite Author " + favoriteauthor.getName() + ' ' + favoriteauthor.getLastname();
boolean var2 = false;
System.out.println(var1);
}
// $FF: synthetic method
public static void main(String[] var0) {
main();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment