AttributeKey toKey = new AttributeKey(keyAttribute.getAttributeNameSpace(), "to");
Attribute toAttribute = attributes.get(toKey);
if (toAttribute == null || !(toAttribute instanceof DynamicAttribute)) {
throw new BehaviorInstantiationException("Required parameters to is not set", line, col);
}
Expression to = ((DynamicAttribute) toAttribute).getExpression();
return new FromBehavior(from, to, line, col);