I want to set an attribute on certain elements I've declared in a BXML file:
Instead of doing:
label.setAttribute(MyEnum.MyEnumValue, "myValue");
in Java-code, I would like to set the attribute from BXML:
<Label ... >
<Attribute key="" value=""/>
</Label>
Is this possible?
