properties.put("ledColorsList", new SimpleObjectProperty<LinkedList<Color>>(LED_COLORS));
return (B)this;
}
public final B ledColor(final int INDEX, final Color COLOR) {
properties.put("ledColorIndex", new SimpleIntegerProperty(INDEX));
properties.put("ledColor", new SimpleObjectProperty<Color>(COLOR));
return (B)this;
}