public MustacheBarra(Bar bar) {
this.bar = bar;
}
public String getStyleClass() {
BarColor color = bar.getColor();
String colorName = color.name();
BarWidth width = bar.getWidth();
String widthName = width.name();
return String.format("bc-%s bc-%s", colorName.toLowerCase(), widthName.toLowerCase());