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

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


     * <b>Definition:</b>
     * Files uploaded as result of the analysis
     * </p>
   */
  public AttachmentDt addFile() {
    AttachmentDt newType = new AttachmentDt();
    getFile().add(newType);
    return newType;
  }
View Full Code Here


     * <b>Definition:</b>
     * Files uploaded as results of the lab
     * </p>
   */
  public AttachmentDt addFile() {
    AttachmentDt newType = new AttachmentDt();
    getFile().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Image of the person
     * </p>
   */
  public AttachmentDt addPhoto() {
    AttachmentDt newType = new AttachmentDt();
    getPhoto().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Image of the person
     * </p>
   */
  public AttachmentDt addPhoto() {
    AttachmentDt newType = new AttachmentDt();
    getPhoto().add(newType);
    return newType;
  }
View Full Code Here

     * GVF file from which data of the resource is extracted
     * </p>
   */
  public AttachmentDt getSourceFile() { 
    if (mySourceFile == null) {
      mySourceFile = new AttachmentDt();
    }
    return mySourceFile;
  }
View Full Code Here

     * <b>Definition:</b>
     * Rich text representation of the entire result as issued by the diagnostic service. Multiple formats are allowed but they SHALL be semantically equivalent.
     * </p>
   */
  public AttachmentDt addPresentedForm() {
    AttachmentDt newType = new AttachmentDt();
    getPresentedForm().add(newType);
    return newType;
  }
View Full Code Here

     * The actual content of the media - inline or by direct reference to the media source file
     * </p>
   */
  public AttachmentDt getContent() { 
    if (myContent == null) {
      myContent = new AttachmentDt();
    }
    return myContent;
  }
View Full Code Here

     * <b>Definition:</b>
     * Image of the person
     * </p>
   */
  public AttachmentDt addPhoto() {
    AttachmentDt newType = new AttachmentDt();
    getPhoto().add(newType);
    return newType;
  }
View Full Code Here

     * Source GVF file
     * </p>
   */
  public AttachmentDt getSourceFile() { 
    if (mySourceFile == null) {
      mySourceFile = new AttachmentDt();
    }
    return mySourceFile;
  }
View Full Code Here

     * <b>Definition:</b>
     * Image of the person
     * </p>
   */
  public AttachmentDt addPhoto() {
    AttachmentDt newType = new AttachmentDt();
    getPhoto().add(newType);
    return newType;
  }
View Full Code Here

TOP

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

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.