/    /  XML – Descendant

XML – Descendant

In the XML family tree , descendant can be identified as the inner element of every outer elements in the hierarchy. For suppose, if we have 2 elements called element A , element B and if the element A is the outer element of element B, then element B will be called as descendant of element A.

Please find the below example and identify the descendants of element “employee_list”.

<?xml version="1.0" encoding="UTF-8"?> 

<company> 
<employee_list> 
	<employee> 
		<name> Hari</name> 
		<city> hyderabad</city> 
	</employee> 
	<employee> 
		<name> sneha</name> 
		<city> banglore</city> 
	</employee> 

</employee_list> 
<customer_list> 
	<customer> 
		<name> Sanjay</name> 
		<location> Mumbai</location> 
	</customer> 
	<customer> 
		<name> Micheal</name> 
		<location> Washington</location> 
	</customer> 
</customer_list> 
</company> 

Below figure shows the descendants of element “employee_list”. XML - descendent element-i2tutorials.com