SafeHtmlBuilder html = new SafeHtmlBuilder();
html.appendHtmlConstant("<ul>");
html.appendHtmlConstant("<li>").appendEscaped("Locale: The user interface language.");
html.appendHtmlConstant("<li>").appendEscaped("Analytics: We track browser and operating system information in order to improve the user interface. ");
html.appendEscaped("You can disable the analytics feature at anytime.");
html.appendHtmlConstant("<li>").appendEscaped("Security Cache: If disabled the security context will be re-created everytime you access a dialog (performance hit).");
html.appendHtmlConstant("</ul>");
StaticHelpPanel help = new StaticHelpPanel(html.toSafeHtml());
layout.add(help.asWidget());
layout.add(form.asWidget());