Is there intelligent way to identify relation between elements using JAXB.
For example: If element SMTP is referred/used in the element Notification and element Configuration
<element name="SMTP">
<complexType>
<sequence>
<element name="fromEmailAddress" type="string"/>
<element name="hostName" type="string"/>
<element name="portNumber" type="string"/>
</sequence>
</complexType>
</element>
<element name="Notification">
<complexType>
<sequence>
<element ref="tns:SMTP"/>
</sequence>
</complexType>
</element>
<element name="Configuration">
<complexType>
<sequence>
<element ref="tns:SMTP"/>
</sequence>
</complexType>
</element>
Is there way to identify this relation/dependancy(SMTP with Notification & Configuration) using JAXB(iam using JAXB to generate classes for the above elements present in my XSD).If it is, sample java code will be helpful
Thanks Ravi