import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
-import org.mxchange.jcore.client.Client;
import org.mxchange.jcore.model.contact.gender.Gender;
/**
public Boolean isOwnContact () {
return this.ownContact;
}
-
- /**
- * Shows this contact to the user.
- * <p>
- * @param client Client instance to use
- * @deprecated Should not be called here
- */
- @Deprecated
- public void show (final Client client) {
- // The client must be set
- if (null == client) {
- // Not set
- throw new NullPointerException("client is null"); //NOI18N
- }
-
- // Display name "box"
- client.displayNameBox(this);
-
- // Display address "box"
- client.displayAddressBox(this);
-
- // Display other data "box"
- client.displayOtherDataBox(this);
- }
}