use of org.hl7.fhir.r4b.model.Property in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeConceptMapOtherElementComponent.
protected void composeConceptMapOtherElementComponent(Complex parent, String parentType, String name, ConceptMap.OtherElementComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "dependsOn", name, element, index);
if (element.hasPropertyElement())
composeUri(t, "ConceptMap", "property", element.getPropertyElement(), -1);
if (element.hasSystemElement())
composeCanonical(t, "ConceptMap", "system", element.getSystemElement(), -1);
if (element.hasValueElement())
composeString(t, "ConceptMap", "value", element.getValueElement(), -1);
if (element.hasDisplayElement())
composeString(t, "ConceptMap", "display", element.getDisplayElement(), -1);
}
use of org.hl7.fhir.r4b.model.Property in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeCodeSystem.
protected void composeCodeSystem(Complex parent, String parentType, String name, CodeSystem element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeDomainResource(t, "CodeSystem", name, element, index);
if (element.hasUrlElement())
composeUri(t, "CodeSystem", "url", element.getUrlElement(), -1);
for (int i = 0; i < element.getIdentifier().size(); i++) composeIdentifier(t, "CodeSystem", "identifier", element.getIdentifier().get(i), i);
if (element.hasVersionElement())
composeString(t, "CodeSystem", "version", element.getVersionElement(), -1);
if (element.hasNameElement())
composeString(t, "CodeSystem", "name", element.getNameElement(), -1);
if (element.hasTitleElement())
composeString(t, "CodeSystem", "title", element.getTitleElement(), -1);
if (element.hasStatusElement())
composeEnum(t, "CodeSystem", "status", element.getStatusElement(), -1);
if (element.hasExperimentalElement())
composeBoolean(t, "CodeSystem", "experimental", element.getExperimentalElement(), -1);
if (element.hasDateElement())
composeDateTime(t, "CodeSystem", "date", element.getDateElement(), -1);
if (element.hasPublisherElement())
composeString(t, "CodeSystem", "publisher", element.getPublisherElement(), -1);
for (int i = 0; i < element.getContact().size(); i++) composeContactDetail(t, "CodeSystem", "contact", element.getContact().get(i), i);
if (element.hasDescriptionElement())
composeMarkdown(t, "CodeSystem", "description", element.getDescriptionElement(), -1);
for (int i = 0; i < element.getUseContext().size(); i++) composeUsageContext(t, "CodeSystem", "useContext", element.getUseContext().get(i), i);
for (int i = 0; i < element.getJurisdiction().size(); i++) composeCodeableConcept(t, "CodeSystem", "jurisdiction", element.getJurisdiction().get(i), i);
if (element.hasPurposeElement())
composeMarkdown(t, "CodeSystem", "purpose", element.getPurposeElement(), -1);
if (element.hasCopyrightElement())
composeMarkdown(t, "CodeSystem", "copyright", element.getCopyrightElement(), -1);
if (element.hasCaseSensitiveElement())
composeBoolean(t, "CodeSystem", "caseSensitive", element.getCaseSensitiveElement(), -1);
if (element.hasValueSetElement())
composeCanonical(t, "CodeSystem", "valueSet", element.getValueSetElement(), -1);
if (element.hasHierarchyMeaningElement())
composeEnum(t, "CodeSystem", "hierarchyMeaning", element.getHierarchyMeaningElement(), -1);
if (element.hasCompositionalElement())
composeBoolean(t, "CodeSystem", "compositional", element.getCompositionalElement(), -1);
if (element.hasVersionNeededElement())
composeBoolean(t, "CodeSystem", "versionNeeded", element.getVersionNeededElement(), -1);
if (element.hasContentElement())
composeEnum(t, "CodeSystem", "content", element.getContentElement(), -1);
if (element.hasSupplementsElement())
composeCanonical(t, "CodeSystem", "supplements", element.getSupplementsElement(), -1);
if (element.hasCountElement())
composeUnsignedInt(t, "CodeSystem", "count", element.getCountElement(), -1);
for (int i = 0; i < element.getFilter().size(); i++) composeCodeSystemCodeSystemFilterComponent(t, "CodeSystem", "filter", element.getFilter().get(i), i);
for (int i = 0; i < element.getProperty().size(); i++) composeCodeSystemPropertyComponent(t, "CodeSystem", "property", element.getProperty().get(i), i);
for (int i = 0; i < element.getConcept().size(); i++) composeCodeSystemConceptDefinitionComponent(t, "CodeSystem", "concept", element.getConcept().get(i), i);
}
use of org.hl7.fhir.r4b.model.Property in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeDeviceDevicePropertyComponent.
protected void composeDeviceDevicePropertyComponent(Complex parent, String parentType, String name, Device.DevicePropertyComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "property", name, element, index);
if (element.hasType())
composeCodeableConcept(t, "Device", "type", element.getType(), -1);
for (int i = 0; i < element.getValueQuantity().size(); i++) composeQuantity(t, "Device", "valueQuantity", element.getValueQuantity().get(i), i);
for (int i = 0; i < element.getValueCode().size(); i++) composeCodeableConcept(t, "Device", "valueCode", element.getValueCode().get(i), i);
}
use of org.hl7.fhir.r4b.model.Property in project org.hl7.fhir.core by hapifhir.
the class CanonicalResourceComparer method renderMetadata.
public XhtmlNode renderMetadata(CanonicalResourceComparison<? extends CanonicalResource> comparison, String id, String prefix) throws FHIRException, IOException {
// columns: code, display (left|right), properties (left|right)
HierarchicalTableGenerator gen = new HierarchicalTableGenerator(Utilities.path("[tmp]", "compare"), false);
TableModel model = gen.new TableModel(id, true);
model.setAlternating(true);
model.getTitles().add(gen.new Title(null, null, "Name", "Property Name", null, 100));
model.getTitles().add(gen.new Title(null, null, "Value", "The value of the property", null, 200, 2));
model.getTitles().add(gen.new Title(null, null, "Comments", "Additional information about the comparison", null, 200));
for (String n : sorted(comparison.getMetadata().keySet())) {
StructuralMatch<String> t = comparison.getMetadata().get(n);
addRow(gen, model.getRows(), n, t);
}
return gen.generate(model, prefix, 0, null);
}
use of org.hl7.fhir.r4b.model.Property in project org.hl7.fhir.core by hapifhir.
the class ValueSetComparer method renderCompose.
public XhtmlNode renderCompose(ValueSetComparison csc, String id, String prefix) throws FHIRException, IOException {
HierarchicalTableGenerator gen = new HierarchicalTableGenerator(Utilities.path("[tmp]", "comparison"), false);
TableModel model = gen.new TableModel(id, true);
model.setAlternating(true);
model.getTitles().add(gen.new Title(null, null, "Item", "The type of item being compared", null, 100));
model.getTitles().add(gen.new Title(null, null, "Property", "The system for the concept", null, 100, 2));
model.getTitles().add(gen.new Title(null, null, "Value", "The display for the concept", null, 200, 2));
model.getTitles().add(gen.new Title(null, null, "Comments", "Additional information about the comparison", null, 200));
for (StructuralMatch<Element> t : csc.getIncludes().getChildren()) {
addComposeRow(gen, model.getRows(), t, "include");
}
for (StructuralMatch<Element> t : csc.getExcludes().getChildren()) {
addComposeRow(gen, model.getRows(), t, "exclude");
}
return gen.generate(model, prefix, 0, null);
}
Aggregations