Neos\ContentRepository\Domain\Model\Node::setNodeData PHP Method

setNodeData() public method

NOTE: This is internal only and should not be used outside of the ContentRepository. TODO: As it is used in the Workspace this should become part of the interface in the next major release.
public setNodeData ( NodeData $nodeData ) : void
$nodeData NodeData
return void
    public function setNodeData(NodeData $nodeData)
    {
        $this->nodeData = $nodeData;
        $this->nodeDataIsMatchingContext = null;
    }
Node