Skip to content

Instantly share code, notes, and snippets.

@Irfy
Created March 5, 2012 00:53
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 Irfy/1975713 to your computer and use it in GitHub Desktop.
Save Irfy/1975713 to your computer and use it in GitHub Desktop.
public class User {
public String[] usernames;
public User(String[] names) {
usernames = names;
}
public String[] getUsernames() {
return usernames;
}
public void setUsernames(String[] usernames) {
this.usernames = usernames;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment