/** * Gets contact from view. * * @return a Contact */ public Contact getContact() { Contact c = new Contact(personView.get()); c.setAddress(getAddress()); c.setTele(getTele()); c.setEmail(getEmail()); c.setWebSites(getSites()); return c; }
public Person getPerson() { return personView.get(); }