Skip to content

Instantly share code, notes, and snippets.

@yelinaung
Created June 18, 2015 05:45
Show Gist options
  • Select an option

  • Save yelinaung/fb5c7dce9a4590218048 to your computer and use it in GitHub Desktop.

Select an option

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