getLogo method
Returns a new HeadingElement
with the Dozer Title.
This method is used on every MenuView, with corporate identity in mind ;)
Implementation
HeadingElement getLogo() {
HeadingElement logo = HeadingElement.h1();
logo.setInnerHtml("Dozer");
logo.setAttribute("id", "dozer-logo");
return logo;
}