s.getOnEntry().setParent(s);
s.getOnExit().setParent(s);
//initialize next / inital
Initial ini = s.getInitial();
Map c = s.getChildren();
TransitionTarget initialState = null;
if (!c.isEmpty()) {
if (ini == null) {
logAndThrowModelError(ERR_STATE_NO_INIT,
new Object[] {getStateName(s)});
}
Transition initialTransition = ini.getTransition();
updateTransition(initialTransition, targets);
initialState = initialTransition.getTarget();
// we have to allow for an indirect descendant initial (targets)
//check that initialState is a descendant of s
if (initialState == null
|| !SCXMLHelper.isDescendant(initialState, s)) {
logAndThrowModelError(ERR_STATE_BAD_INIT,
new Object[] {getStateName(s)});
}
}
List histories = s.getHistory();
Iterator histIter = histories.iterator();
while (histIter.hasNext()) {
if (s.isSimple()) {
logAndThrowModelError(ERR_HISTORY_SIMPLE_STATE,
new Object[] {getStateName(s)});
}
History h = (History) histIter.next();
Transition historyTransition = h.getTransition();
if (historyTransition == null) {
// try to assign initial as default
if (initialState != null
&& !(initialState instanceof History)) {
historyTransition = new Transition();
historyTransition.setNext(initialState.getId());
historyTransition.setParent(h);
h.setTransition(historyTransition);
} else {
logAndThrowModelError(ERR_HISTORY_NO_DEFAULT,
new Object[] {h.getId(), getStateName(s)});