示例#1
0
 /**
  * Get the associated Featurevectortype object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Featurevectortype The associated Featurevectortype object.
  * @throws     PropelException
  */
 public function getFeaturevectortype(PropelPDO $con = null)
 {
     if ($this->aFeaturevectortype === null && $this->featurevectortype_id !== null) {
         $this->aFeaturevectortype = FeaturevectortypePeer::retrieveByPk($this->featurevectortype_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->aFeaturevectortype->addFeaturevectors($this);
         		 */
     }
     return $this->aFeaturevectortype;
 }