Suppose I have a model like below:
Model{
int[] order = new int[] {1,2,3,4};
}
I want to bind this to a textfield`s text property. I have written a converter extending org.jdesktop.beansbinding.Converter<Integer[],String>.
But it is not working issuing a ClassCastException at the definition of the class.
