Package ca.uhn.fhir.model.primitive

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


     * WADO-RS url where image is available
     * </p>
   */
  public UriDt getUrl() { 
    if (myUrl == null) {
      myUrl = new UriDt();
    }
    return myUrl;
  }
View Full Code Here


     * <b>Definition:</b>
     * WADO-RS url where image is available
     * </p>
   */
  public SeriesInstance setUrl( String theUri) {
    myUrl = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public UriDt addUriErr() {
    UriDt newType = new UriDt();
    getUriErr().add(newType);
    return newType;
  }
View Full Code Here

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public UriDt addUriCorr() {
    UriDt newType = new UriDt();
    getUriCorr().add(newType);
    return newType;
  }
View Full Code Here

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

     * WADO-RS URI where Study is available
     * </p>
   */
  public UriDt getUrl() { 
    if (myUrl == null) {
      myUrl = new UriDt();
    }
    return myUrl;
  }
View Full Code Here

     * <b>Definition:</b>
     * WADO-RS URI where Study is available
     * </p>
   */
  public ImagingStudy setUrl( String theUri) {
    myUrl = 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 Concept setSystem( String theUri) {
    mySystem = 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.