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

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


     * <b>Definition:</b>
     * Contacts of the publisher to assist a user in finding and communicating with the publisher
     * </p>
   */
  public ContactDt addTelecom() {
    ContactDt newType = new ContactDt();
    getTelecom().add(newType);
    return newType;
  }
View Full Code Here


   */
  public ConceptMap 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 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>
     * Contacts for Organization relevant to this conformance statement.  The contacts may be a website, email, phone numbers, etc.
     * </p>
   */
  public ContactDt addTelecom() {
    ContactDt newType = new ContactDt();
    getTelecom().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Conformance 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 Conformance 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>
     * The contact details of communication devices available at the location. This can include phone numbers, fax numbers, mobile numbers, email addresses and web sites
     * </p>
   */
  public ContactDt addTelecom() {
    ContactDt newType = new ContactDt();
    getTelecom().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Location 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 Location 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

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.