private IInformationControlCreator defaultCreatorWithHtmlTextPresenter() {
return
new IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
BrowserInformationControl browserInformationControl = new BrowserInformationControl(parent, SWT.TOOL | SWT.NO_TRIM, SWT.COLOR_GREEN, getTemplate().getName());
return browserInformationControl;
}
};
}