Package ca.uhn.fhir.model.primitive

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


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


     * The identifier that is used to identify this version of the profile when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the profile author manually and the value should be a timestamp
     * </p>
   */
  public StringDt getVersion() { 
    if (myVersion == null) {
      myVersion = new StringDt();
    }
    return myVersion;
  }
View Full Code Here

     * <b>Definition:</b>
     * The identifier that is used to identify this version of the profile when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the profile author manually and the value should be a timestamp
     * </p>
   */
  public Profile setVersion( String theString) {
    myVersion = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A free text natural language name identifying the Profile
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * A free text natural language name identifying the Profile
     * </p>
   */
  public Profile setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Details of the individual or organization who accepts responsibility for publishing the profile
     * </p>
   */
  public StringDt getPublisher() { 
    if (myPublisher == null) {
      myPublisher = new StringDt();
    }
    return myPublisher;
  }
View Full Code Here

     * <b>Definition:</b>
     * Details of the individual or organization who accepts responsibility for publishing the profile
     * </p>
   */
  public Profile setPublisher( String theString) {
    myPublisher = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A free text natural language description of the profile and its use
     * </p>
   */
  public StringDt getDescription() { 
    if (myDescription == null) {
      myDescription = new StringDt();
    }
    return myDescription;
  }
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 AppointmentResponse setComment( String theString) {
    myComment = new StringDt(theString);
    return this;
  }
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.