Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.CodingDt


     * Class of the source of sample
     * </p>
   */
  public CodingDt getGenomicSourceClass() { 
    if (myGenomicSourceClass == null) {
      myGenomicSourceClass = new CodingDt();
    }
    return myGenomicSourceClass;
  }
View Full Code Here


     * Overall interpretation of the patient's genotype on the genetic disease being assesed
     * </p>
   */
  public CodingDt getGeneticDiseaseAnalysisOverallInterpretation() { 
    if (myGeneticDiseaseAnalysisOverallInterpretation == null) {
      myGeneticDiseaseAnalysisOverallInterpretation = new CodingDt();
    }
    return myGeneticDiseaseAnalysisOverallInterpretation;
  }
View Full Code Here

     * Carrier status of the patietn
     * </p>
   */
  public CodingDt getGeneticDiseaseAnalysisOverallCarrierInterpertation() { 
    if (myGeneticDiseaseAnalysisOverallCarrierInterpertation == null) {
      myGeneticDiseaseAnalysisOverallCarrierInterpertation = new CodingDt();
    }
    return myGeneticDiseaseAnalysisOverallCarrierInterpertation;
  }
View Full Code Here

     * Analysis on the efficacy of the drug being assessed
     * </p>
   */
  public CodingDt getDrugEfficacyAnalysisOverallInterpretation() { 
    if (myDrugEfficacyAnalysisOverallInterpretation == null) {
      myDrugEfficacyAnalysisOverallInterpretation = new CodingDt();
    }
    return myDrugEfficacyAnalysisOverallInterpretation;
  }
View Full Code Here

     * Gender.
     * </p>
   */
  public CodingDt getGender() { 
    if (myGender == null) {
      myGender = new CodingDt();
    }
    return myGender;
  }
View Full Code Here

     * The type of coverage: social program, medical plan, accident coverage (workers compensation, auto), group health.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Selections made by the user from the list of options
     * </p>
   */
  public CodingDt addChoice() {
    CodingDt newType = new CodingDt();
    getChoice().add(newType);
    return newType;
  }
View Full Code Here

     * Type of media involved. Used when the event is about exporting/importing onto media
     * </p>
   */
  public CodingDt getMedia() { 
    if (myMedia == null) {
      myMedia = new CodingDt();
    }
    return myMedia;
  }
View Full Code Here

     * <b>Definition:</b>
     * Code specifying the type of source where event originated
     * </p>
   */
  public CodingDt addType() {
    CodingDt newType = new CodingDt();
    getType().add(newType);
    return newType;
  }
View Full Code Here

     * A code indicating the type of error, warning or information message.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.CodingDt

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.