use of org.hl7.fhir.dstu2.model.Base in project kindling by HL7.
the class PageProcessor method statHeader.
private String statHeader(String mode) {
StringBuilder b = new StringBuilder();
b.append("<ul class=\"nav nav-tabs\">");
b.append(makeHeaderTab("Statistic", "statistic.html", mode == null || "base".equals(mode)));
b.append(makeHeaderTab("Examples", "statistic-examples.html", mode == null || "examples".equals(mode)));
b.append(makeHeaderTab("Detailed Descriptions", "statistic-definitions.html", mode == null || "definitions".equals(mode)));
b.append(makeHeaderTab("Mappings", "statistic-mappings.html", mode == null || "mappings".equals(mode)));
b.append("</ul>\r\n");
return b.toString();
}
use of org.hl7.fhir.dstu2.model.Base in project kindling by HL7.
the class PageProcessor method ucHeader.
private String ucHeader(String mode) {
StringBuilder b = new StringBuilder();
b.append("<ul class=\"nav nav-tabs\">");
b.append(makeHeaderTab("UsageContext", "usagecontext.html", mode == null || "base".equals(mode)));
b.append(makeHeaderTab("Examples", "usagecontext-examples.html", mode == null || "examples".equals(mode)));
b.append(makeHeaderTab("Detailed Descriptions", "usagecontext-definitions.html", mode == null || "definitions".equals(mode)));
b.append(makeHeaderTab("Mappings", "usagecontext-mappings.html", mode == null || "mappings".equals(mode)));
b.append("</ul>\r\n");
return b.toString();
}
use of org.hl7.fhir.dstu2.model.Base in project kindling by HL7.
the class PageProcessor method profilesHeader.
private String profilesHeader(String mode) {
StringBuilder b = new StringBuilder();
b.append("<ul class=\"nav nav-tabs\">");
b.append(makeHeaderTab("Profiling FHIR", "profiling.html", mode == null || "base".equals(mode)));
b.append(makeHeaderTab("Examples", "profiling-examples.html", mode == null || "examples".equals(mode)));
b.append("</ul>\r\n");
return b.toString();
}
use of org.hl7.fhir.dstu2.model.Base in project kindling by HL7.
the class PageProcessor method drHeader.
private String drHeader(String mode) {
StringBuilder b = new StringBuilder();
b.append("<ul class=\"nav nav-tabs\">");
b.append(makeHeaderTab("Data Requirement", "datarequirement.html", mode == null || "base".equals(mode)));
b.append(makeHeaderTab("Examples", "datarequirement-examples.html", mode == null || "examples".equals(mode)));
b.append(makeHeaderTab("Detailed Descriptions", "datarequirement-definitions.html", mode == null || "definitions".equals(mode)));
b.append(makeHeaderTab("Mappings", "datarequirement-mappings.html", mode == null || "mappings".equals(mode)));
b.append("</ul>\r\n");
return b.toString();
}
use of org.hl7.fhir.dstu2.model.Base in project kindling by HL7.
the class PageProcessor method narrHeader.
private String narrHeader(String mode) {
StringBuilder b = new StringBuilder();
b.append("<ul class=\"nav nav-tabs\">");
b.append(makeHeaderTab("Narrative", "narrative.html", mode == null || "base".equals(mode)));
b.append(makeHeaderTab("Examples", "narrative-example.html", mode == null || "examples".equals(mode)));
b.append(makeHeaderTab("Detailed Descriptions", "narrative-definitions.html", mode == null || "definitions".equals(mode)));
b.append("</ul>\r\n");
return b.toString();
}
Aggregations