private object[] GetNameHeader(StructureDefinition definition)
 {
     return(new object[]
     {
         BootstrapHtml.Label(definition.GetTypeDescription()),
         " ",
         definition.GetName()
     });
 }
 private object[] GetLabelAndValue(string labelText, object value)
 {
     return(new object[]
     {
         BootstrapHtml.Label(labelText),
         " ",
         value
     });
 }
예제 #3
0
 private object[] GetValueSetNameLabel(string name)
 {
     return(new object[] { BootstrapHtml.Label("Value set"), " ", name });
 }
예제 #4
0
 private object[] GetConceptMapNameLabel(string name)
 {
     return(new object[] { BootstrapHtml.Label("Concept map"), " ", name });
 }