state.setOnExitActions(parseOnExitActions(element));
return state;
}
private DecisionStateModel parseDecisionState(Element element) {
DecisionStateModel state = new DecisionStateModel(element.getAttribute("id"));
state.setParent(element.getAttribute("parent"));
state.setIfs(parseIfs(element));
state.setOnExitActions(parseOnExitActions(element));
state.setAttributes(parseAttributes(element));
state.setSecured(parseSecured(element));
state.setOnEntryActions(parseOnEntryActions(element));
state.setExceptionHandlers(parseExceptionHandlers(element));
return state;
}