nombre; } /** * Constructor */ public function __construct() { $this->evaluacion = new \Doctrine\Common\Collections\ArrayCollection(); } /** * Set nombre * * @param string $nombre * @return TipoInstrumentoEvaluacion */ public function setNombre($nombre) { $this->nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Add evaluacion * * @param \AppBundle\Entity\PlanificacionSeccionEvaluacion $evaluacion * @return TipoInstrumentoEvaluacion */ public function addEvaluacion(\AppBundle\Entity\PlanificacionSeccionEvaluacion $evaluacion) { $this->evaluacion[] = $evaluacion; return $this; } /** * Remove evaluacion * * @param \AppBundle\Entity\PlanificacionSeccionEvaluacion $evaluacion */ public function removeEvaluacion(\AppBundle\Entity\PlanificacionSeccionEvaluacion $evaluacion) { $this->evaluacion->removeElement($evaluacion); } /** * Get evaluacion * * @return \Doctrine\Common\Collections\Collection */ public function getEvaluacion() { return $this->evaluacion; } }