Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.0.9
-
None
Description
The declaration of action states that has hierarchy of parents seems to depend on lexical order for intialization.
<action-state id="grandfather"> <on-exit...do-something/> </action-state> <action-state id="father parent="#grandfather"/> <action-state id="child" parent="#father"/>
would work i.e. do-something from grandfather would be called.where as the following declaration it does not get called
<action-state id="grandfather"> <on-exit...do-something/> </action-state> <action-state id="child" parent="#father"/> ---> note that this is forward declaration. <action-state id="father parent="#grandfather"/>