GpelAssignCopyTo to = new GpelAssignCopyTo(ns);
to.xml().setAttributeValue(PART_STR, messagePartName);
if(isInvoke(next)){
to.xml().setAttributeValue(VARIABLE_STR, next.xml().attributeValue(INPUT_VARIABLE_STR));
}else{
to.xml().setAttributeValue(VARIABLE_STR, next.xml().attributeValue(VARIABLE_STR));
}
GpelAssignCopy newAssign = new GpelAssignCopy(ns, from, to);
newAssign.xml().setAttributeValue(VALIDATE_STR, NO_STR);
GpelAssign gpelAssign = new GpelAssign(ns, newAssign);
list.add(gpelAssign);