I have a class that looks like this:
public class Word {
String text;
String root;
int id;
String definition;
...
}
I am trying to read/write it using marshal/unmarshal and it worked fine until I wanted to determine a prop order:
@XmlType( propOrder = {"text", "root", "id", "definition"} )
Now it is failing when root is empty (which it is sometimes). Any ideas?