/** * Get the associated File object * * @param PropelPDO Optional Connection object. * @return File The associated File object. * @throws PropelException */ public function getFile(PropelPDO $con = null) { if ($this->aFile === null && $this->file_id !== null) { $this->aFile = FilePeer::retrieveByPk($this->file_id); /* The following can be used additionally to guarantee the related object contains a reference to this object. This level of coupling may, however, be undesirable since it could result in an only partially populated collection in the referenced object. $this->aFile->addCollectionFiles($this); */ } return $this->aFile; }