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