/**
  * Get the associated Color object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Color The associated Color object.
  * @throws     PropelException
  */
 public function getColor(PropelPDO $con = null)
 {
     if ($this->aColor === null && $this->color_id !== null) {
         $this->aColor = ColorPeer::retrieveByPk($this->color_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->aColor->addProductHasColors($this);
         		 */
     }
     return $this->aColor;
 }