Is there any ways to map the xml file into a java object??? So that i dont have to browse through the entire tree in order to get what i want??<br><br>for instance this xml file<br><br>&lt;root&gt;<br>&nbsp; &lt;name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &lt;Firstname&gt;Soren&lt;/Firstname&gt;
<br>&nbsp;&nbsp;&nbsp;&nbsp; &lt;Lastname&gt;Faltz&lt;/Lastname&gt;<br>&nbsp;&nbsp; &lt;/name&gt;<br>&lt;/root&gt;<br><br><br>mapped into this<br><br>MyObject obj = JDOM.Document.DOSOMETHINGHERE();<br><br>println(obj.Firstname);<br>println(obj.Lastname
);<br><br><br><br><br><br>