Пример #1
0
 /**
  * Perminently sets the color of this line to the given color. This will become the color of the
  * line when it is not highlighted. If you would like to temporarily change the color of the line,
  * use changeLineColor.
  *
  * @param color the color to be set.
  * @see changeLineColor(Color color)
  */
 public void setLineColor(Color color) {
   this.foreground = color;
   changeLineColor(foreground);
 }