Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * A computer processable form of the units in some unit representation system
     * </p>
   */
  public QuantityDt setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here


     * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
     * </p>
   */
  public CodingDt setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Type of the feature being described
     * </p>
   */
  public CodeDt getType() { 
    if (myType == null) {
      myType = new CodeDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Type of the feature being described
     * </p>
   */
  public GVFVariant setType( String theCode) {
    myType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Direction of the strand
     * </p>
   */
  public CodeDt getStrand() { 
    if (myStrand == null) {
      myStrand = new CodeDt();
    }
    return myStrand;
  }
View Full Code Here

     * <b>Definition:</b>
     * Direction of the strand
     * </p>
   */
  public GVFVariant setStrand( String theCode) {
    myStrand = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Name of the database
     * </p>
   */
  public CodeDt getDatabase() { 
    if (myDatabase == null) {
      myDatabase = new CodeDt();
    }
    return myDatabase;
  }
View Full Code Here

     * <b>Definition:</b>
     * Name of the database
     * </p>
   */
  public Dbxref setDatabase( String theCode) {
    myDatabase = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Class of the sequencing platform
     * </p>
   */
  public CodeDt getClassElement() { 
    if (myClassElement == null) {
      myClassElement = new CodeDt();
    }
    return myClassElement;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.CodeDt

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.