}
//Method that maps Template-Names to Template-Files.
public HTMLStreamMapEntry[] getStreamMapperEntries() {
return new HTMLStreamMapEntry[]{
new HTMLStreamMapEntry("header", new XFile("html/header.html")),
new HTMLStreamMapEntry("footer", new XFile("html/footer.html")),
new HTMLStreamMapEntry("overview", new XFile("html/overview.html")),
new HTMLStreamMapEntry("newPerson", new XFile("html/newPerson.html")),
new HTMLStreamMapEntry("editPerson", new XFile("html/editPerson.html")),
new HTMLStreamMapEntry("person", new XFile("html/model/person.html")),
new HTMLStreamMapEntry("personTableRow", new XFile("html/model/personTableRow.html")),
new HTMLStreamMapEntry("mandatory", new XFile("html/mandatory.html")),
};
}