Log.info("AlertDetailsView-ListGridRecord: " + record);
addMember(getDetailsTabSet(record));
}
private TabSet getDetailsTabSet(ListGridRecord record) {
TabSet tabset = new NamedTabSet();
Tab generalTab = new NamedTab(new ViewName("general", MSG.common_title_generalProp()));
generalTab.setPane(getDetailsTableForAlert(record));
Tab conditionsTab = new NamedTab(new ViewName("conditions", MSG.view_alert_common_tab_conditions()));
conditionsTab.setPane(getConditionsForAlert(record));
Tab notificationsTab = new NamedTab(new ViewName("notifications", MSG.view_alert_common_tab_notifications()));
notificationsTab.setPane(getNotificationsForAlert(record));
tabset.addTab(generalTab);
tabset.addTab(conditionsTab);
tabset.addTab(notificationsTab);
return tabset;
}