Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * 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 Messaging setDocumentation( String theString) {
    myDocumentation = new StringDt(theString);
    return this;
  }
View Full Code Here


     * The version of the code system which was used when choosing this code. Note that a well-maintained code system does not need the version reported, because the meaning of codes is consistent across versions. However this cannot consistently be assured. and When the meaning is not guaranteed to be consistent, the version SHOULD be exchanged
     * </p>
   */
  public StringDt getVersion() { 
    if (myVersion == null) {
      myVersion = new StringDt();
    }
    return myVersion;
  }
View Full Code Here

     * <b>Definition:</b>
     * The version of the code system which was used when choosing this code. Note that a well-maintained code system does not need the version reported, because the meaning of codes is consistent across versions. However this cannot consistently be assured. and When the meaning is not guaranteed to be consistent, the version SHOULD be exchanged
     * </p>
   */
  public CodingDt setVersion( String theString) {
    myVersion = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A representation of the meaning of the code in the system, following the rules of the system.
     * </p>
   */
  public StringDt getDisplay() { 
    if (myDisplay == null) {
      myDisplay = new StringDt();
    }
    return myDisplay;
  }
View Full Code Here

     * <b>Definition:</b>
     * A representation of the meaning of the code in the system, following the rules of the system.
     * </p>
   */
  public CodingDt setDisplay( String theString) {
    myDisplay = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
     * </p>
   */
  public StringDt getReference() { 
    if (myReference == null) {
      myReference = new StringDt();
    }
    return myReference;
  }
View Full Code Here

     * <b>Definition:</b>
     * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
     * </p>
   */
  public ResourceReferenceDt setReference( String theString) {
    myReference = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Plain text narrative that identifies the resource in addition to the resource reference
     * </p>
   */
  public StringDt getDisplay() { 
    if (myDisplay == null) {
      myDisplay = new StringDt();
    }
    return myDisplay;
  }
View Full Code Here

     * <b>Definition:</b>
     * Plain text narrative that identifies the resource in addition to the resource reference
     * </p>
   */
  public ResourceReferenceDt setDisplay( String theString) {
    myDisplay = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Guidance on how this event is handled, such as internal system trigger points, business rules, etc.
     * </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.