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

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


     * <b>Definition:</b>
     * A list of the diagnostic orders that resulted in this imaging study being performed
     * </p>
   */
  public ResourceReferenceDt addOrder() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getOrder().add(newType);
    return newType;
  }
View Full Code Here


     * The requesting/referring physician
     * </p>
   */
  public ResourceReferenceDt getReferrer() { 
    if (myReferrer == null) {
      myReferrer = new ResourceReferenceDt();
    }
    return myReferrer;
  }
View Full Code Here

     * Who read study and interpreted the images
     * </p>
   */
  public ResourceReferenceDt getInterpreter() { 
    if (myInterpreter == null) {
      myInterpreter = new ResourceReferenceDt();
    }
    return myInterpreter;
  }
View Full Code Here

     * <b>Definition:</b>
     * Details concerning a test requested.
     * </p>
   */
  public ResourceReferenceDt addRequestDetail() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getRequestDetail().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Details about the specimens on which this Disagnostic report is based
     * </p>
   */
  public ResourceReferenceDt addSpecimen() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getSpecimen().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Observations that are part of this diagnostic report. Observations can be simple name/value pairs (e.g. \"atomic\" results), or they can be grouping observations that include references to other members of the group (e.g. \"panels\")
     * </p>
   */
  public ResourceReferenceDt addResult() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getResult().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * One or more links to full details of any imaging performed during the diagnostic investigation. Typically, this is imaging performed by DICOM enabled modalities, but this is not required. A fully enabled PACS viewer can use this information to provide views of the source images
     * </p>
   */
  public ResourceReferenceDt addImagingStudy() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getImagingStudy().add(newType);
    return newType;
  }
View Full Code Here

     *
     * </p>
   */
  public ResourceReferenceDt getLink() { 
    if (myLink == null) {
      myLink = new ResourceReferenceDt();
    }
    return myLink;
  }
View Full Code Here

     * The specimen that was used when this observation was made
     * </p>
   */
  public ResourceReferenceDt getSpecimen() { 
    if (mySpecimen == null) {
      mySpecimen = new ResourceReferenceDt();
    }
    return mySpecimen;
  }
View Full Code Here

     * <b>Definition:</b>
     * Who was responsible for asserting the observed value as \"true\"
     * </p>
   */
  public ResourceReferenceDt addPerformer() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getPerformer().add(newType);
    return newType;
  }
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.