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

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


     * <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

     * 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

   *            The codes
   */
  public CodingListParam(String theSystem, String... theCodes) {
    if (theCodes != null) {
      for (String next : theCodes) {
        add(new CodingDt(theSystem, next));
      }
    }
  }
View Full Code Here

   *            The codes
   */
  public CodingListParam(String theSystem, Collection<String> theCodes) {
    if (theCodes != null) {
      for (String next : theCodes) {
        add(new CodingDt(theSystem, next));
      }
    }
  }
View Full Code Here

  @Override
  public void setValuesAsQueryTokens(QualifiedParamList theParameters) {
    getCodings().clear();
    for (String string : theParameters) {
      CodingDt dt = new CodingDt();
      dt.setValueAsQueryToken(null, string);
      myCodings.add(dt);
    }
  }
View Full Code Here

     * <b>Definition:</b>
     * Selections made by the user from the list of options
     * </p>
   */
  public CodingDt addChoice() {
    CodingDt newType = new CodingDt();
    getChoice().add(newType);
    return newType;
  }
View Full Code Here

     * The role that the participant played
     * </p>
   */
  public CodingDt getRole() { 
    if (myRole == null) {
      myRole = new CodingDt();
    }
    return myRole;
  }
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.