Home | History | Annotate | Download | only in vo

Lines Matching defs:group

21     private int group;
25 public User(String name, String lastName, int photoResource, int group) {
29 this.group = group;
32 public void setGroup(int group) {
33 if (this.group == group) {
36 this.group = group;
37 notifyPropertyChanged(BR.group);
41 return group;