productVersion.setUndefined(false);
TextItem profile = new TextItem("profile", "Profile");
profile.setValue(productConfig.getProfile().name());
profile.setUndefined(false);
PlainFormView view = new PlainFormView(new ArrayList<FormItem>(
Arrays.asList(consoleVersion, coreVersion, productName, productVersion, profile)));
view.setNumColumns(1);
Widget content = view.asWidget(null);
view.refresh(true); // to fill the CellTable
VerticalPanel layout = new VerticalPanel();
layout.setStyleName("window-content");
layout.add(content);
return layout;