label = $label; $this->dataRow = $dataRow; } /** * Handles the generation of each Data Row/Element as a SVG element * @return the code related to a row in the GIS dataset */ public abstract function prepareRowAsSVG($options); public function getLabel() { return $this->label; } public function setLabel($label) { $this->label = $label; } public function getDataRow() { return $this->dataRow; } public function setDataRow($dataRow) { $this->dataRow = $dataRow; } } ?>