id; } /** * Set col * * @param integer $col * * @return GridCol */ public function setCol($col) { $this->col = $col; return $this; } /** * Get col * * @return integer */ public function getCol() { return $this->col; } /** * Set gridCol * * @param GridRow $gridCol * * @return GridCol */ public function setGridCol(GridRow $gridCol = null) { $this->gridCol = $gridCol; return $this; } /** * Get gridCol * * @return GridRow */ public function getGridCol() { return $this->gridCol; } }