Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created January 13, 2018 13:36
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 skydoves/d5d99c91fa17bb510f8d49000f5fe7f4 to your computer and use it in GitHub Desktop.
Save skydoves/d5d99c91fa17bb510f8d49000f5fe7f4 to your computer and use it in GitHub Desktop.
@PreferenceFunction(keyname = "nickname")
public String putUserNickFunction(String nickname) {
return "Hello, " + nickname;
}
@PreferenceFunction(keyname = "nickname")
public String getUserNickFunction(String nickname) {
return nickname + "!!!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment