nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Set numero * * @param integer $numero * @return PlanHistoricoNacional */ public function setNumero($numero) { $this->numero = $numero; return $this; } /** * Get numero * * @return integer */ public function getNumero() { return $this->numero; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set idPlanObjetivoHistorico * * @param \AppBundle\Entity\PlanObjetivoHistorico $idPlanObjetivoHistorico * @return PlanHistoricoNacional */ public function setIdPlanObjetivoHistorico(\AppBundle\Entity\PlanObjetivoHistorico $idPlanObjetivoHistorico) { $this->idPlanObjetivoHistorico = $idPlanObjetivoHistorico; return $this; } /** * Get idPlanObjetivoHistorico * * @return \AppBundle\Entity\PlanObjetivoHistorico */ public function getIdPlanObjetivoHistorico() { return $this->idPlanObjetivoHistorico; } /** * Get nombre * * @return string */ public function __toString() { return $this->getNombre(); } }