* @throws NotInTheDomainException
* @throws AttributeNotRegisteredException
*/
public void setCurrentState(State state, XTTModel model, boolean autoregister) throws NotInTheDomainException, AttributeNotRegisteredException{
for(StateElement se : state){
Attribute attr = model.getAttributeByName(se.getAttributeName());
setAttributeValue(attr, se.getValue(), autoregister);
}
}