/**
  * Set the foreground color.
  *
  * @param color the new foreground color
  */
 public void setSelectionForeground(Color color) {
   setAttribute(SELECTOR_SELECTION, CSSProperty.COLOR, CSSStyleSheet.getAttribute(color));
 }
 /**
  * Set the foreground color.
  *
  * @param color the new foreground color
  */
 public void setSelectionBackground(Color color) {
   setAttribute(
       SELECTOR_SELECTION, CSSProperty.BACKGROUND_COLOR, CSSStyleSheet.getAttribute(color));
 }