Example #1
0
 public void setBirthday(Date birthday) {
   this.birthday = Utils.setBirthday(birthday);
 }
Example #2
0
 public int getCoachAge() {
   Date birthday = getBirthday();
   return Utils.getAge(birthday);
 }
Example #3
0
  public Date getBirthday() {

    return Utils.getBirthday(this.birthday);
  }