Signed-off-by:Roland Häder <roland@mxchange.org>
client.displayOtherDataBox(this);
}
- /**
- * Enables the flag "own data" which signals that this contact is the user's
- * own data.
- */
- protected void enableFlagOwnContact () {
- this.ownContact = true;
+ @Override
+ public void setOwnContact (final Boolean ownContact) {
+ this.ownContact = ownContact;
}
/**
* @return Own data?
*/
public boolean isOwnContact ();
+
+ /**
+ * Setter for own contact
+ *
+ * @param ownContact Own contact
+ */
+ public void setOwnContact (final Boolean ownContact);
}