public void unmarshall(final Transaction a_trans) { _evaluationMode = QueryEvaluationMode.fromInt(_evaluationModeAsInt); _trans = a_trans; Iterator4 i = iterateConstraints(); while (i.moveNext()) { ((QCon) i.current()).unmarshall(a_trans); } }
public void marshall() { checkConstraintsEvaluationMode(); _evaluationModeAsInt = _evaluationMode.asInt(); Iterator4 i = iterateConstraints(); while (i.moveNext()) { ((QCon) i.current()).getRoot().marshall(); } }