S CXML Apache - Как я могу получить доступ к данным в системной переменной "_x"? - PullRequest
0 голосов
/ 04 февраля 2020

У меня есть следующее S CXML:

<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" binding="early" name="scxml.name" initial="xpto">
    <state id="xpto">
        <onentry>
            <assign location="_x.someEntity.someSubEntityField.booleanField" expr="true"/>
            <assign location="_x.someOtherEntity.someField" expr="..."/>
        </onentry>
        <transition type="external" target="cancelled" cond="_x.someOtherEntity.isCancelled()"/>
    </state>
    <state id="cancelled">
    ...
    </state>

Как я могу получить доступ к данным в системной переменной "_x" ?? Где определены свойства под "_x"? Имеет ли этот вопрос смысл?

...