jaxb unmarshals
<xs:complexType name="Test" mixed="true">
<xs:sequence>
<xs:any namespace="http://www.w3.org/1999/xhtml" minOccurs="0"/>
</xs:sequence>
<attributes.../>
</xs:complexType>
as
protected List<Object> content
;
My jxb bindings file is :
<jxb:bindings node="//xs:complexType[@name='Test']">
<jxb:property>
<jxb:baseType name="java.lang.String"></jxb:baseType>
</jxb:property>
</jxb:bindings>
and this makes the java equivalent as
protected List<String> content;
Is there a way I can get it to be protected String content
?