centroEstudios = new ArrayCollection(); } /** * Set the value of id. * * @param integer $id * @return \UBV\SurUbvBundle\Entity\AreaConocimientoUbv */ public function setId($id) { $this->id = $id; return $this; } /** * Get the value of id. * * @return integer */ public function getId() { return $this->id; } /** * Set the value of descripcion. * * @param string $descripcion * @return \UBV\SurUbvBundle\Entity\AreaConocimientoUbv */ public function setDescripcion($descripcion) { $this->descripcion = $descripcion; return $this; } /** * Get the value of descripcion. * * @return string */ public function getDescripcion() { return $this->descripcion; } /** * Set the value of codigo. * * @param string $codigo * @return \UBV\SurUbvBundle\Entity\AreaConocimientoUbv */ public function setCodigo($codigo) { $this->codigo = $codigo; return $this; } /** * Get the value of codigo. * * @return string */ public function getCodigo() { return $this->codigo; } /** * Set the value of estatus. * * @param boolean $estatus * @return \UBV\SurUbvBundle\Entity\AreaConocimientoUbv */ public function setEstatus($estatus) { $this->estatus = $estatus; return $this; } /** * Get the value of estatus. * * @return boolean */ public function getEstatus() { return $this->estatus; } /** * Set CentroEstudio entity (one to one). * * @param \UBV\SurUbvBundle\Entity\CentroEstudio $centroEstudio * @return \UBV\SurUbvBundle\Entity\AreaConocimientoUbv */ public function setCentroEstudio(CentroEstudio $centroEstudio = null) { $centroEstudio->setAreaConocimientoUbv($this); $this->centroEstudio = $centroEstudio; return $this; } /** * Get CentroEstudio entity (one to one). * * @return \UBV\SurUbvBundle\Entity\CentroEstudio */ public function getCentroEstudio() { return $this->centroEstudio; } /** * Set AreaConocimientoOpsu entity (one to one). * * @param \UBV\SurUbvBundle\Entity\AreaConocimientoOpsu $areaConocimientoOpsu * @return \UBV\SurUbvBundle\Entity\AreaConocimientoUbv */ public function setAreaConocimientoOpsu(AreaConocimientoOpsu $areaConocimientoOpsu) { $this->areaConocimientoOpsu = $areaConocimientoOpsu; return $this; } /** * Get AreaConocimientoOpsu entity (one to one). * * @return \UBV\SurUbvBundle\Entity\AreaConocimientoOpsu */ public function getAreaConocimientoOpsu() { return $this->areaConocimientoOpsu; } public function __sleep() { return array('id', 'descripcion', 'codigo', 'estatus', 'area_conocimiento_opsu_id'); } }