Package ca.uhn.fhir.model.primitive

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


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


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

     * URL to FASTA file used as reference assembly
     * </p>
   */
  public UriDt getReferenceFasta() { 
    if (myReferenceFasta == null) {
      myReferenceFasta = new UriDt();
    }
    return myReferenceFasta;
  }
View Full Code Here

     * <b>Definition:</b>
     * URL to FASTA file used as reference assembly
     * </p>
   */
  public GVFMeta setReferenceFasta( String theUri) {
    myReferenceFasta = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * GFF3 file containing feature being described in the file
     * </p>
   */
  public UriDt getFeatureGFF3() { 
    if (myFeatureGFF3 == null) {
      myFeatureGFF3 = new UriDt();
    }
    return myFeatureGFF3;
  }
View Full Code Here

     * <b>Definition:</b>
     * GFF3 file containing feature being described in the file
     * </p>
   */
  public GVFMeta setFeatureGFF3( String theUri) {
    myFeatureGFF3 = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Region captured in the file
     * </p>
   */
  public UriDt getCaptureRegions() { 
    if (myCaptureRegions == null) {
      myCaptureRegions = new UriDt();
    }
    return myCaptureRegions;
  }
View Full Code Here

     * <b>Definition:</b>
     * Region captured in the file
     * </p>
   */
  public GVFMeta setCaptureRegions( String theUri) {
    myCaptureRegions = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Establishes the namespace in which set of possible id values is unique.
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     * Establishes the namespace in which set of possible id values is unique.
     * </p>
   */
  public IdentifierDt 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.