nombre; } /** * Set nombre * * @param string $nombre * @return PlanObjetivoHistorico */ public function setNombre($nombre) { $this->nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Set numero * * @param integer $numero * @return PlanObjetivoHistorico */ 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; } }