protected void setSelectionItem(ComboListOnPropertyPage combo, String value) {
   if (combo.getItemCount() <= 0) return;
   combo.setApplyValue(value);
   String item = combo.getKey(value);
   if (item != null) combo.select(combo.indexOf(item));
   else combo.select(0);
 }