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

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


     * <b>Definition:</b>
     * A contact detail for the organization
     * </p>
   */
  public ContactDt addTelecom() {
    ContactDt newType = new ContactDt();
    getTelecom().add(newType);
    return newType;
  }
View Full Code Here


   */
  public Organization 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 Organization 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 (e.g. a telephone number or an email address) by which the party may be contacted.
     * </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

     * <b>Definition:</b>
     * A contact detail for the practitioner, 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 Practitioner 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 Practitioner addTelecom( String theValue) {
    if (myTelecom == null) {
      myTelecom = new java.util.ArrayList<ContactDt>();
    }
    myTelecom.add(new ContactDt(theValue));
    return this;
  }
View Full Code Here

     * An e-mail, phone, website or other contact point to use to resolve issues with message communications.
     * </p>
   */
  public ContactDt getContact() { 
    if (myContact == null) {
      myContact = new ContactDt();
    }
    return myContact;
  }
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.