Definition: All kinds of technology mediated contact details for a person or organization, including telephone, email, etc.
Requirements: Need to track phone, fax, mobile, sms numbers, email addresses, twitter tags, etc.
785786787788789790791792793
* <b>Definition:</b> * Contact details for an organization or a particular human that is responsible for the device * </p> */ public ContactDt addContact() { ContactDt newType = new ContactDt(); getContact().add(newType); return newType; }
756757758759760761762763764
* <b>Definition:</b> * A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
790791792793794795796797
*/ public Patient addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
808809810811812813814815
*/ public Patient addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
165916601661166216631664166516661667
* <b>Definition:</b> * A contact detail for the person, e.g. a telephone number or an email address. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
16931694169516961697169816991700
*/ public Contact addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
17111712171317141715171617171718
*/ public Contact addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
551552553554555556557558559
* <b>Definition:</b> * * </p> */ public ContactDt addContact() { ContactDt newType = new ContactDt(); getContact().add(newType); return newType; }
585586587588589590591592
*/ public User addContact( ContactUseEnum theContactUse, String theValue) { if (myContact == null) { myContact = new java.util.ArrayList<ContactDt>(); } myContact.add(new ContactDt(theContactUse, theValue)); return this; }
603604605606607608609610
*/ public User addContact( String theValue) { if (myContact == null) { myContact = new java.util.ArrayList<ContactDt>(); } myContact.add(new ContactDt(theValue)); return this; }