/**
* Creates a new BrowserContentManagerDemo object
*/
public BrowserContentManagerDemo() {
_browserContentManager = new BrowserContentManager(0);
final RenderingOptions renderingOptions =
_browserContentManager.getRenderingSession()
.getRenderingOptions();
// Turn on images in html. Change 'true' to 'false'
// to disable image rendering.
renderingOptions.setProperty(RenderingOptions.CORE_OPTIONS_GUID,
RenderingOptions.SHOW_IMAGES_IN_HTML, true);
_mainScreen = new MainScreen();
_mainScreen.add(new LabelField("Label before the content",
Field.FOCUSABLE));