I have an attribute on my class object that is a Class<?> object. I want to set that in BXML.
I keep getting a coercion error about converting string to a class<?> object. How do I tell the BXMLSerializer to convert this to a class? Is there a converter mechanism that I can plug in my conversions? <MyObject myClassAttribute="org.MyClass" /> Where myClassAttribute is a Class<?> object. I understand that I can do this long-hand and make the attribute an element, but I would like to keep the short-form. Doable?
