Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Guidance on how this event is handled, such as internal system trigger points, business rules, etc.
     * </p>
   */
  public MessagingEvent setDocumentation( String theString) {
    myDocumentation = new StringDt(theString);
    return this;
  }
View Full Code Here


     * A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user
     * </p>
   */
  public StringDt getText() { 
    if (myText == null) {
      myText = new StringDt();
    }
    return myText;
  }
View Full Code Here

     * <b>Definition:</b>
     * A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user
     * </p>
   */
  public CodeableConceptDt setText( String theString) {
    myText = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A description of how the application supports or uses the specified document profile.  For example, when are documents created, what action is taken with consumed documents, etc.
     * </p>
   */
  public StringDt getDocumentation() { 
    if (myDocumentation == null) {
      myDocumentation = new StringDt();
    }
    return myDocumentation;
  }
View Full Code Here

     * <b>Definition:</b>
     * A description of how the application supports or uses the specified document profile.  For example, when are documents created, what action is taken with consumed documents, etc.
     * </p>
   */
  public Document setDocumentation( String theString) {
    myDocumentation = new StringDt(theString);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public StringDt getComment() { 
    if (myComment == null) {
      myComment = new StringDt();
    }
    return myComment;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Availability setComment( String theString) {
    myComment = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A full text representation of the address
     * </p>
   */
  public StringDt getText() { 
    if (myText == null) {
      myText = new StringDt();
    }
    return myText;
  }
View Full Code Here

     * <b>Definition:</b>
     * A full text representation of the address
     * </p>
   */
  public AddressDt setText( String theString) {
    myText = new StringDt(theString);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * This component contains the house number, apartment number, street name, street direction, P.O. Box number, delivery hints, and similar address information
     * </p>
   */
  public StringDt addLine() {
    StringDt newType = new StringDt();
    getLine().add(newType);
    return newType;
  }
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.