| Author |
how to extend/inherit object factory in jaxb
|
santos kumar
Greenhorn
Joined: Jan 11, 2012
Posts: 2
|
|
I would like to how to extend/inherit Objectfactory.The scenario is very simple.
suppose i have xsd_A which defines a complextype "address".There is another xsd b which imports xsd_a and references address or it create element of type address.i have few requirements
1) i would like the objectfactory of xsd_b to extend xsd_a and avoid redefining createAddress().how is it possible.i would like not to have Address.java in package xsd_b.i would like all classes in xsd_b to reference Address.java generated by xsd_a.
like
import xsd_a;
class something
{
public xsd_a.Address homeAddress;
}
Note the class refers the address generted by xsd_a.
|
 |
 |
|
|
subject: how to extend/inherit object factory in jaxb
|
|
|