Hi Is it possible to change the way that the SourceGenerator generates array access methods via configuration?
For example, the xsd element <xsd:element name="address" type="Address" maxOccurs="unbounded"/> generates public Address[] getAddress() and public void setAddress(Address []). I would like to generate in addition public ArrayList getAddressList() and public void setAddressList(ArrayList list). The reason for this is that Hibernate can lazily load collections but not arrays. James

