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><root><br> <name><br> <Firstname>Soren</Firstname>
<br> <Lastname>Faltz</Lastname><br> </name><br></root><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>