Skip to content

Instantly share code, notes, and snippets.

@yelinaung
Created June 18, 2015 05:45
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 yelinaung/fb5c7dce9a4590218048 to your computer and use it in GitHub Desktop.
Save yelinaung/fb5c7dce9a4590218048 to your computer and use it in GitHub Desktop.
MMAUG Simple Databinding - User Object class
public class User {
public String name;
public String age;
public String address;
public User(String name, String age, String address) {
this.name = name;
this.age = age;
this.address = address;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment