*
* @param color the color
*/
public void select(String color) {
color = color.replace("#", "");
ColorPaletteEvent ce = new ColorPaletteEvent(this);
ce.setColor(color);
if (!fireEvent(Events.BeforeSelect, ce)) {
return;
}
if (!color.equals(value) || allowReselect) {
if (getValue() != null) {