I have an xsd that I'm using to generate an object model in Java using JAXB and I want the Lists it generates to be renamed to xyzList instead of xyz. Is there a way to do this without having to add an entry in the bindings file for each list?
For example this xsd fragment:
<xs:element name="RegulatoryEL" minOccurs="0" maxOccurs="unbounded">
generates this:
protected List<RegulatoryEL> RegulatoryEL;
but I want something like:
protected List<RegulatoryEL> RegulatoryELList;