Is this class a data model?
class Record { int id = 0; String name = ""; String telephone = ""; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getTelephone() { return this.telephone; } public void setTelephone(String telephone) { this.telephone = telephone; } public int getID() { return id; } }