I saw this thread Schema Generated Classes extending a common super class and my requirement is just one step ahead. I want my schema generated classes to extend specific external classes and not a common super class. For example
<root> <complextype> vehicle</complextype> <complextype> home</complextype></root>
Now i want the generated vehicle class to extend my self written helper VehicleHelper class and generated home classo extend my self written helper HomeHelper class.
I don't want to clutter my schema and keep the custom bindings in a external file. Can someone please guide me on how to achieve this?