/**
  * Sets the color choiceSet from DE model.
  *
  * @param choiceSet The color ChoiceSet.
  */
 public void setChoiceSet(IChoiceSet choiceSet) {
   this.choiceSet = choiceSet;
   String[] colors = ChoiceSetFactory.getDisplayNamefromChoiceSet(choiceSet);
   Arrays.sort(colors);
   combo.removeAll();
   combo.add(NONE_CHOICE);
   if (colors != null) for (int i = 0; i < colors.length; i++) combo.add(colors[i]);
 }