Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * May include configuration or other information useful in debugging.
     * </p>
   */
  public Source setSoftware( String theString) {
    mySoftware = new StringDt(theString);
    return this;
  }
View Full Code Here


     * Can convey versions of multiple systems in situations where a message passes through multiple hands.
     * </p>
   */
  public StringDt getVersion() { 
    if (myVersion == null) {
      myVersion = new StringDt();
    }
    return myVersion;
  }
View Full Code Here

     * <b>Definition:</b>
     * Can convey versions of multiple systems in situations where a message passes through multiple hands.
     * </p>
   */
  public Source setVersion( String theString) {
    myVersion = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Human-readable name for the source system
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * Human-readable name for the source system
     * </p>
   */
  public Destination setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Name of the analysis
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * Name of the analysis
     * </p>
   */
  public SequencingAnalysis setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Build number of the refernece genome
     * </p>
   */
  public StringDt getBuild() { 
    if (myBuild == null) {
      myBuild = new StringDt();
    }
    return myBuild;
  }
View Full Code Here

     * <b>Definition:</b>
     * Build number of the refernece genome
     * </p>
   */
  public Genome setBuild( String theString) {
    myBuild = new StringDt(theString);
    return this;
  }
View Full Code Here

     * The identifier that is used to identify this profile when it is referenced in a specification, model, design or an instance  (should be globally unique OID, UUID, or URI)
     * </p>
   */
  public StringDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new StringDt();
    }
    return myIdentifier;
  }
View Full Code Here

TOP

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

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.