Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.UriDt


     * A reference to a specific concept that holds a coded value. This can be an element in a FHIR resource, or a specific reference to a data element in a different specification (e.g. v2) or a general reference to a kind of data field, or a reference to a value set with an appropriately narrow definition
     * </p>
   */
  public UriDt getConcept() { 
    if (myConcept == null) {
      myConcept = new UriDt();
    }
    return myConcept;
  }
View Full Code Here


     * <b>Definition:</b>
     * A reference to a specific concept that holds a coded value. This can be an element in a FHIR resource, or a specific reference to a data element in a different specification (e.g. v2) or a general reference to a kind of data field, or a reference to a value set with an appropriately narrow definition
     * </p>
   */
  public ConceptDependsOn setConcept( String theUri) {
    myConcept = new UriDt(theUri);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public ConceptDependsOn setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public ConceptMap2 setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * A network address on which the device may be contacted directly
     * </p>
   */
  public UriDt getUrl() { 
    if (myUrl == null) {
      myUrl = new UriDt();
    }
    return myUrl;
  }
View Full Code Here

     * <b>Definition:</b>
     * A network address on which the device may be contacted directly
     * </p>
   */
  public Device setUrl( String theUri) {
    myUrl = new UriDt(theUri);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public UriDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new UriDt();
    }
    return myIdentifier;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setIdentifier( String theUri) {
    myIdentifier = new UriDt(theUri);
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.UriDt

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.