Я хочу сериализовать объект с помощью JAXB. Мои определения классов выглядят так:
@XmlRootElement
public class MyClass{
<<How do I annotate this one?>>
private xyz_type xyz;
@XmlElement(name = "unique")
private int unique;
}
public class xyz_type extends abc_type{
private qwe_tpe qwe;
public static final ert_type ARRAY = ert_type.ARRAY;
}
Заранее спасибо за вашу помощь!