/**
  * Filter the query by a related Tipo_notificacion object
  *
  * @param     Tipo_notificacion|PropelCollection $tipo_notificacion The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    NotificacionQuery The current query, for fluid interface
  */
 public function filterByTipo_notificacion($tipo_notificacion, $comparison = null)
 {
     if ($tipo_notificacion instanceof Tipo_notificacion) {
         return $this->addUsingAlias(NotificacionPeer::ID_TIPO_NOTIFICACION, $tipo_notificacion->getId(), $comparison);
     } elseif ($tipo_notificacion instanceof PropelCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(NotificacionPeer::ID_TIPO_NOTIFICACION, $tipo_notificacion->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByTipo_notificacion() only accepts arguments of type Tipo_notificacion or PropelCollection');
     }
 }
 /**
  * Exclude object from result
  *
  * @param     Tipo_notificacion $tipo_notificacion Object to remove from the list of results
  *
  * @return    Tipo_notificacionQuery The current query, for fluid interface
  */
 public function prune($tipo_notificacion = null)
 {
     if ($tipo_notificacion) {
         $this->addUsingAlias(Tipo_notificacionPeer::ID, $tipo_notificacion->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Declares an association between this object and a Tipo_notificacion object.
  *
  * @param      Tipo_notificacion $v
  * @return     Notificacion The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setTipo_notificacion(Tipo_notificacion $v = null)
 {
     if ($v === null) {
         $this->setId_tipo_notificacion(NULL);
     } else {
         $this->setId_tipo_notificacion($v->getId());
     }
     $this->aTipo_notificacion = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Tipo_notificacion object, it will not be re-added.
     if ($v !== null) {
         $v->addNotificacion($this);
     }
     return $this;
 }