Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Official human-readable label for the composition
     * </p>
   */
  public Composition setTitle( String theString) {
    myTitle = new StringDt(theString);
    return this;
  }
View Full Code Here


     * The heading for this particular section.  This will be part of the rendered content for the document.
     * </p>
   */
  public StringDt getTitle() { 
    if (myTitle == null) {
      myTitle = new StringDt();
    }
    return myTitle;
  }
View Full Code Here

     * <b>Definition:</b>
     * The heading for this particular section.  This will be part of the rendered content for the document.
     * </p>
   */
  public Section setTitle( String theString) {
    myTitle = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A concise definition that  is shown in the generated XML format that summarizes profiles (used throughout the specification)
     * </p>
   */
  public StringDt getShort() { 
    if (myShort == null) {
      myShort = new StringDt();
    }
    return myShort;
  }
View Full Code Here

     * <b>Definition:</b>
     * A concise definition that  is shown in the generated XML format that summarizes profiles (used throughout the specification)
     * </p>
   */
  public StructureElementDefinition setShort( String theString) {
    myShort = new StringDt(theString);
    return this;
  }
View Full Code Here

     * The definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource
     * </p>
   */
  public StringDt getFormal() { 
    if (myFormal == null) {
      myFormal = new StringDt();
    }
    return myFormal;
  }
View Full Code Here

     * <b>Definition:</b>
     * The definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource
     * </p>
   */
  public StructureElementDefinition setFormal( String theString) {
    myFormal = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc.
     * </p>
   */
  public StringDt getComments() { 
    if (myComments == null) {
      myComments = new StringDt();
    }
    return myComments;
  }
View Full Code Here

     * <b>Definition:</b>
     * Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc.
     * </p>
   */
  public StructureElementDefinition setComments( String theString) {
    myComments = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Explains why this element is needed and why it's been constrained as it has
     * </p>
   */
  public StringDt getRequirements() { 
    if (myRequirements == null) {
      myRequirements = new StringDt();
    }
    return myRequirements;
  }
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.