XML Phonebook Example:
<?xml version="1.0" encoding="UTF-8"?>
<AddressBook>
<Contact>
<FirstName>John</FirstName>
<LastName>Doe</LastName>
<Ringtone>0</Ringtone>
<Phone type="Home">
<phonenumber>1000</phonenumber>
</Phone>
<Phone type="Work">
<phonenumber>1001</phonenumber>
</Phone>
<Phone type="Mobile">
<phonenumber>1002</phonenumber>
</Phone>
</Contact>
<Contact>
<FirstName>Alice</FirstName>
<LastName>Beck</LastName>
<Ringtone>0</Ringtone>
<Phone type="Home">
<phonenumber>2000</phonenumber>
</Phone>
<Phone type="Work">
<phonenumber>2001</phonenumber>
</Phone>
<Phone type="Mobile">
<phonenumber>2002</phonenumber>
</Phone>
</Contact>
</AddressBook>