*/
private String street;
+ /**
+ * Title
+ */
+ private String title;
+
/**
* Regular user controller
*/
this.street = street;
}
+ @Override
+ public String getTitle () {
+ return this.title;
+ }
+
+ @Override
+ public void setTitle (final String title) {
+ this.title = title;
+ }
+
@Override
public Integer getZipCode () {
return this.zipCode;
// Clear all data
// - personal data
this.setGender(null);
- // TODO: Unfinished this.setTitle(null);
+ this.setTitle(null);
this.setFirstName(null);
this.setFamilyName(null);
this.setStreet(null);
// Copy all fields:
// - base data
this.setGender(contact.getContactGender());
+ this.setTitle(contact.getContactTitle());
this.setFirstName(contact.getContactFirstName());
this.setFamilyName(contact.getContactFamilyName());
this.setStreet(contact.getContactStreet());