}
}
private void populateNotificationType(String notificationName)
{
NotificationInfoModel data = (NotificationInfoModel)_notificationNameCombo.getData(notificationName);
if (data == null)
{
_descriptionLabel.setText("");
_typesCombo.select(0);
_typesCombo.setEnabled(false);
return;
}
_descriptionLabel.setText(data.getDescription());
_typesCombo.removeAll();
_typesCombo.setItems(data.getTypes());
if (_typesCombo.getItemCount() > 1)
{
_typesCombo.add(SELECT_NOTIFICATIONTYPE, 0);
}
_typesCombo.select(0);