Examples of CodedValue


Examples of uk.nhs.interoperability.payloads.CodedValue

    code = FHIRUtils.stripOIDPrefix(code);
     
    Logger.trace("  Processed FHIR coded item: " + field.getName() + ", found value: " + code);
    if (code != null) {
      //p.setValue(field.getName(), new CodedValue(code, displayName, codeSystem));
      CodedValue newCV = new CodedValue(code, displayName, codeSystem);
      //if (reference != null) {
      //  newCV.setReference(reference);
      //}
      return newCV;
    }
View Full Code Here

Examples of uk.nhs.interoperability.payloads.CodedValue

    if (code != null) {
      // If enabled, output an entry in an XPath Report
      XPathReportCreator.addField(field, p, code, displayName);
     
      //p.setValue(field.getName(), new CodedValue(code, displayName, codeSystem));
      CodedValue newCV = new CodedValue(code, displayName, codeSystem);
      if (reference != null) {
        newCV.setReference(reference);
      }
      return newCV;
    }
    return null;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.