i am new in commons scxml and want to load a scxml-document from system and parse it to Java object,then edit it and output the edited document. how can i proceed ? example: i have the following document: NewText.xml
<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" initialstate="reset"> - <state id="reset"> <transition event="watch.start" target="running" /> </state> - <state id="running"> <transition event="watch.split" target="paused" /> </state> - <state id="paused"> <transition event="watch.unsplit" target="running" /> <transition event="watch.stop" target="stopped" /> </state> - <state id="stopped"> <transition event="watch.reset" target="reset" /> </state> </scxml> and want to load it a and the transition: <transition event="watch.stop" target="stopped" /> then create a new document newtext_1.xml an write the result inside. thanks for your help in advance --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
