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

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


     * Identifies the medication being administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
     * </p>
   */
  public ResourceReferenceDt getMedication() { 
    if (myMedication == null) {
      myMedication = new ResourceReferenceDt();
    }
    return myMedication;
  }
View Full Code Here


     * Identification of the facility/location where the medication was shipped to, as part of the dispense event.
     * </p>
   */
  public ResourceReferenceDt getDestination() { 
    if (myDestination == null) {
      myDestination = new ResourceReferenceDt();
    }
    return myDestination;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the person who picked up the medication.  This will usually be a patient or their carer, but some cases exist where it can be a healthcare professional
     * </p>
   */
  public ResourceReferenceDt addReceiver() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getReceiver().add(newType);
    return newType;
  }
View Full Code Here

     * Subject of the sequencing lab
     * </p>
   */
  public ResourceReferenceDt getSubject() { 
    if (mySubject == null) {
      mySubject = new ResourceReferenceDt();
    }
    return mySubject;
  }
View Full Code Here

     * Subject described by the resource
     * </p>
   */
  public ResourceReferenceDt getSubject() { 
    if (mySubject == null) {
      mySubject = new ResourceReferenceDt();
    }
    return mySubject;
  }
View Full Code Here

     * <b>Definition:</b>
     * Microarray that studies the gene
     * </p>
   */
  public ResourceReferenceDt addMicroarray() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getMicroarray().add(newType);
    return newType;
  }
View Full Code Here

     * Input lab for the RNA-Seq
     * </p>
   */
  public ResourceReferenceDt getInputLab() { 
    if (myInputLab == null) {
      myInputLab = new ResourceReferenceDt();
    }
    return myInputLab;
  }
View Full Code Here

     * Input analysis for the RNA-Seq
     * </p>
   */
  public ResourceReferenceDt getInputAnalysis() { 
    if (myInputAnalysis == null) {
      myInputAnalysis = new ResourceReferenceDt();
    }
    return myInputAnalysis;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies who is responsible for adding the information to the document
     * </p>
   */
  public ResourceReferenceDt addAuthor() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getAuthor().add(newType);
    return newType;
  }
View Full Code Here

     * Identifies the organization or group who is responsible for ongoing maintenance of and access to the document
     * </p>
   */
  public ResourceReferenceDt getCustodian() { 
    if (myCustodian == null) {
      myCustodian = new ResourceReferenceDt();
    }
    return myCustodian;
  }
View Full Code Here

TOP

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

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.