}
}
_currentConnection = connection;
BrowserContent browserContent = null;
try {
browserContent =
_renderingSession.getBrowserContent(connection, this, e);
if (browserContent != null) {
final Field field = browserContent.getDisplayableContent();
if (field != null) {
synchronized (Application.getEventLock()) {
_mainScreen.deleteAll();
_mainScreen.add(field);
}
}
browserContent.finishLoading();
}
} catch (final RenderingException re) {
Utilities.errorDialog("RenderingSession#getBrowserContent() threw "
+ re.toString());