Skip to content

Commit

Permalink
Merge pull request #992 from HL7/ShowAllTypesInKeyElements
Browse files Browse the repository at this point in the history
Show all types in key elements
  • Loading branch information
grahamegrieve authored Nov 29, 2024
2 parents e281944 + ea67061 commit 2d283af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ public String byKey(String defnFile, Set<String> outputTracker, boolean toTabs,

sdCopy.getSnapshot().setElement(getKeyElements());
sdr.getContext().setStructureMode(mode);
org.hl7.fhir.utilities.xhtml.XhtmlNode table = sdr.generateTable(new RenderingStatus(), defnFile, sdCopy, false, destDir, false, sdCopy.getId(), true, corePath, "", sd.getKind() == StructureDefinitionKind.LOGICAL, false, outputTracker, true, gen.withUniqueLocalPrefix(all ? "ka" :"k"), toTabs ? ANCHOR_PREFIX_KEY : ANCHOR_PREFIX_SNAP, resE);
org.hl7.fhir.utilities.xhtml.XhtmlNode table = sdr.generateTable(new RenderingStatus(), defnFile, sdCopy, false, destDir, false, sdCopy.getId(), true, corePath, "", sd.getKind() == StructureDefinitionKind.LOGICAL, true, outputTracker, true, gen.withUniqueLocalPrefix(all ? "ka" :"k"), toTabs ? ANCHOR_PREFIX_KEY : ANCHOR_PREFIX_SNAP, resE);

return composer.compose(table);
}
Expand Down Expand Up @@ -555,7 +555,7 @@ public String byKeyElements(String defnFile, Set<String> outputTracker) throws I
List<ElementDefinition> keyElements = getKeyElements();

sdCopy.getSnapshot().setElement(keyElements);
org.hl7.fhir.utilities.xhtml.XhtmlNode table = sdr.generateTable(new RenderingStatus(), defnFile, sdCopy, false, destDir, false, sdCopy.getId(), true, corePath, "", sd.getKind() == StructureDefinitionKind.LOGICAL, false, outputTracker, true, gen, ANCHOR_PREFIX_KEY, resE);
org.hl7.fhir.utilities.xhtml.XhtmlNode table = sdr.generateTable(new RenderingStatus(), defnFile, sdCopy, false, destDir, false, sdCopy.getId(), true, corePath, "", sd.getKind() == StructureDefinitionKind.LOGICAL, true, outputTracker, true, gen, ANCHOR_PREFIX_KEY, resE);

return composer.compose(table);
}
Expand Down

0 comments on commit 2d283af

Please sign in to comment.