Package ca.uhn.fhir.model.primitive

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


   */
  public Compose addImport( String theUri) {
    if (myImport == null) {
      myImport = new java.util.ArrayList<UriDt>();
    }
    myImport.add(new UriDt(theUri));
    return this;
  }
View Full Code Here


     * The code system from which the selected codes come from
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     * The code system from which the selected codes come from
     * </p>
   */
  public ComposeInclude 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 ExpansionContains 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 Define setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * A formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter
     * </p>
   */
  public UriDt getDefinition() { 
    if (myDefinition == null) {
      myDefinition = new UriDt();
    }
    return myDefinition;
  }
View Full Code Here

     * <b>Definition:</b>
     * A formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter
     * </p>
   */
  public RestResourceSearchParam setDefinition( String theUri) {
    myDefinition = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * The identification of the system that provides the coded form of the unit
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
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.