Parsing an XML and binding it to a dialog in an Eclipse plugin -
i trying write eclipse plug-in dialog parses xml file , displays fields using dialog. dialog should show values populated in xml file might -
<customer>
<name>erwin schrodinger</name>
<address>vienna,austria</address>
<profession>physicist</profession>
</customer>
also, need allow user edit these values , write updated values xml file.
i trying achieve using java. current approach use dom/sax parser parse fields in xml file , display on jface dialog. not have experience in java, , looking advice on topic. nice approach or there better way it?
rather building solution scratch, may want take @ frameworks makes easier. instance, sapphire, provides xml binding , rendering of forms backed xml.
http://www.eclipse.org/sapphire/ http://www.eclipse.org/sapphire/documentation/latest/introduction/index.html http://www.eclipse.org/forums/index.php?t=thread&frm_id=192
Comments
Post a Comment