VerticalPanel panel = new VerticalPanel();
// header
panel.add(new ContentHeaderLabel("Patch Management"));
if (productConfig.getProfile() == ProductConfig.Profile.PRODUCT) {
panel.add(new ContentDescription(
Console.MESSAGES.patch_manager_desc_product()));
} else {
panel.add(new ContentDescription(Console.CONSTANTS.patch_manager_desc_community()));
}
panel.add(new ContentDescription(Console.CONSTANTS.patch_manager_toolstrip_desc()));
// latest patch info
latestContainer = new FlowPanel();
latestContainer.add(new ContentGroupLabel(Console.CONSTANTS.patch_manager_patch_information()));
latestForm = new Form<PatchInfo>(PatchInfo.class);