* @param oldToNewMap the map filled with the old node-new node relation
* @return a deep clone of this {@link APrintMessageStm} node
*/
public APrintMessageStm clone(Map<INode,INode> oldToNewMap)
{
APrintMessageStm node = new APrintMessageStm(
_message
);
oldToNewMap.put(this, node);
return node;
}