Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Comments about this mapping, including version notes, issues, scope limitations, and other important notes for usage
     * </p>
   */
  public Mapping setComments( String theString) {
    myComments = new StringDt(theString);
    return this;
  }
View Full Code Here


     * The name of this resource constraint statement (to refer to it from other resource constraints - from Profile.structure.element.definition.type.profile)
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * The name of this resource constraint statement (to refer to it from other resource constraints - from Profile.structure.element.definition.type.profile)
     * </p>
   */
  public Structure setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Human summary: why describe this resource?
     * </p>
   */
  public StringDt getPurpose() { 
    if (myPurpose == null) {
      myPurpose = new StringDt();
    }
    return myPurpose;
  }
View Full Code Here

     * <b>Definition:</b>
     * Human summary: why describe this resource?
     * </p>
   */
  public Structure setPurpose( String theString) {
    myPurpose = new StringDt(theString);
    return this;
  }
View Full Code Here

     * The path identifies the element and is expressed as a \".\"-separated list of ancestor elements, beginning with the name of the resource
     * </p>
   */
  public StringDt getPath() { 
    if (myPath == null) {
      myPath = new StringDt();
    }
    return myPath;
  }
View Full Code Here

     * <b>Definition:</b>
     * The path identifies the element and is expressed as a \".\"-separated list of ancestor elements, beginning with the name of the resource
     * </p>
   */
  public StructureElement setPath( String theString) {
    myPath = new StringDt(theString);
    return this;
  }
View Full Code Here

     * The name of this element definition (to refer to it from other element definitions using Profile.structure.element.definition.nameReference). This is a unique name referring to a specific set of constraints applied to this element. One use of this is to provide a name to different slices of the same element
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * The name of this element definition (to refer to it from other element definitions using Profile.structure.element.definition.nameReference). This is a unique name referring to a specific set of constraints applied to this element. One use of this is to provide a name to different slices of the same element
     * </p>
   */
  public StructureElement setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Documentation about the system's messaging capabilities for this endpoint not otherwise documented by the conformance statement.  For example, process for becoming an authorized messaging exchange partner.
     * </p>
   */
  public StringDt getDocumentation() { 
    if (myDocumentation == null) {
      myDocumentation = new StringDt();
    }
    return myDocumentation;
  }
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.