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

     * Code that identifies the event this message represents and connects it with it's definition. Events defined as part of the FHIR specification have the system value \"http://hl7.org/fhir/message-type\"
     * </p>
   */
  public CodingDt getEvent() { 
    if (myEvent == null) {
      myEvent = new CodingDt();
    }
    return myEvent;
  }
View Full Code Here

     * <b>Definition:</b>
     * A set of terms from external terminologies that may be used to assist with indexing and searching of templates.
     * </p>
   */
  public CodingDt addCode() {
    CodingDt newType = new CodingDt();
    getCode().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Type of procedure performed
     * </p>
   */
  public CodingDt addProcedure() {
    CodingDt newType = new CodingDt();
    getProcedure().add(newType);
    return newType;
  }
View Full Code Here

     * Body part examined. See  DICOM Part 16 Annex L for the mapping from DICOM to Snomed
     * </p>
   */
  public CodingDt getBodySite() { 
    if (myBodySite == null) {
      myBodySite = new CodingDt();
    }
    return myBodySite;
  }
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.