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

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


     * Genetic disease being assesed
     * </p>
   */
  public CodingDt getGeneticDiseaseAssessed() { 
    if (myGeneticDiseaseAssessed == null) {
      myGeneticDiseaseAssessed = new CodingDt();
    }
    return myGeneticDiseaseAssessed;
  }
View Full Code Here


     * Medication being assesed
     * </p>
   */
  public CodingDt getMedicationAssesed() { 
    if (myMedicationAssesed == null) {
      myMedicationAssesed = new CodingDt();
    }
    return myMedicationAssesed;
  }
View Full Code Here

     * 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

   */
  public void setValueAsEnum(Collection<T> theValues) {
    getCoding().clear();
    if (theValues != null) {
      for (T next : theValues) {
        getCoding().add(new CodingDt(myBinder.toSystemString(next), myBinder.toCodeString(next)));
      }
    }
  }
View Full Code Here

  public void setValueAsEnum(T theValue) {
    getCoding().clear();
    if (theValue == null) {
      return;
    }
    getCoding().add(new CodingDt(myBinder.toSystemString(theValue), myBinder.toCodeString(theValue)));
  }
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.