Re: scxml: nested custom actions

2016-03-24 Thread Woonsan Ko
Hi Rinke / Ate, It looks like it has been changed as of SCXML-213 [1] with commit eba2b2899787ef0476c1dd8852aba5b0adb4f5f3. SCXMLReader#readCustomAction() seems to ignore the possibility of nested custom actions by invoking #skipToEndElement(reader). @Ate, is it probably a regression? (custom

scxml: nested custom actions

2016-03-19 Thread R.C. Hoekstra
Hi Ate, Woonsan, Is there a way to access nested child actions from a parent custom action in scxml? In version scxml-2.0-M1 I could do this in the onexecute of a custom action: for (Action action : getParent().getActions()) { if (action instanceof MyChildAction) { //