Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.ContactDt


   */
  public ConceptMap addTelecom( String theValue) {
    if (myTelecom == null) {
      myTelecom = new java.util.ArrayList<ContactDt>();
    }
    myTelecom.add(new ContactDt(theValue));
    return this;
  }
View Full Code Here


     * <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;
  }
View Full Code Here

   */
  public Device addContact( ContactUseEnum theContactUse,  String theValue) {
    if (myContact == null) {
      myContact = new java.util.ArrayList<ContactDt>();
    }
    myContact.add(new ContactDt(theContactUse, theValue));
    return this;
  }
View Full Code Here

   */
  public Device addContact( String theValue) {
    if (myContact == null) {
      myContact = new java.util.ArrayList<ContactDt>();
    }
    myContact.add(new ContactDt(theValue));
    return this;
  }
View Full Code Here

     * <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;
  }
View Full Code Here

   */
  public Patient addTelecom( ContactUseEnum theContactUse,  String theValue) {
    if (myTelecom == null) {
      myTelecom = new java.util.ArrayList<ContactDt>();
    }
    myTelecom.add(new ContactDt(theContactUse, theValue));
    return this;
  }
View Full Code Here

   */
  public Patient addTelecom( String theValue) {
    if (myTelecom == null) {
      myTelecom = new java.util.ArrayList<ContactDt>();
    }
    myTelecom.add(new ContactDt(theValue));
    return this;
  }
View Full Code Here

     * <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;
  }
View Full Code Here

   */
  public Contact addTelecom( ContactUseEnum theContactUse,  String theValue) {
    if (myTelecom == null) {
      myTelecom = new java.util.ArrayList<ContactDt>();
    }
    myTelecom.add(new ContactDt(theContactUse, theValue));
    return this;
  }
View Full Code Here

   */
  public Contact addTelecom( String theValue) {
    if (myTelecom == null) {
      myTelecom = new java.util.ArrayList<ContactDt>();
    }
    myTelecom.add(new ContactDt(theValue));
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.ContactDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.