1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
// generated by kwalify from address_book.schema.yaml
import java.util.*;
/**
* person class
*/
public class Person {
private String _name;
private String _desc;
private String _group;
private String _email;
private String _phone;
private Date _birth;
private String _blood;
public Person() {}
public Person(Map map) {
_name = (String)map.get("name");
_desc = (String)map.get("desc");
_group = (String)map.get("group");
_email = (String)map.get("email");
_phone = (String)map.get("phone");
_birth = (Date)map.get("birth");
_blood = (String)map.get("blood");
}
public String getName() { return _name; }
public void setName(String name_) { _name = name_; }
public String getDesc() { return _desc; }
public void setDesc(String desc_) { _desc = desc_; }
public String getGroup() { return _group; }
public void setGroup(String group_) { _group = group_; }
public String getEmail() { return _email; }
public void setEmail(String email_) { _email = email_; }
public String getPhone() { return _phone; }
public void setPhone(String phone_) { _phone = phone_; }
public Date getBirth() { return _birth; }
public void setBirth(Date birth_) { _birth = birth_; }
public String getBlood() { return _blood; }
public void setBlood(String blood_) { _blood = blood_; }
}
|