/**
  * Declares an association between this object and a P2POwnNode object.
  *
  * @param      P2POwnNode $v
  * @return     MeshingTrustRemote The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setP2POwnNodeRelatedByInOwnNodeId(P2POwnNode $v = null)
 {
     if ($v === null) {
         $this->setInOwnNodeId(NULL);
     } else {
         $this->setInOwnNodeId($v->getId());
     }
     $this->aP2POwnNodeRelatedByInOwnNodeId = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the P2POwnNode object, it will not be re-added.
     if ($v !== null) {
         $v->addMeshingTrustRemoteRelatedByInOwnNodeId($this);
     }
     return $this;
 }