Exemplo n.º 1
0
 /** Update the text colour. */
 protected void chooseColour() {
   Color newColour =
       JColorChooser.showDialog(this, "Select text colour", colourIcon.getMainColour());
   if (newColour != null) {
     setTextColour(newColour);
   }
 }