Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
key = $key;
$this->description = $description;
$this->value = $value;
}
// ###################################################################
/**
* Returns the key for the data set
*
* @return string
*/
public function getKey()
{
return $this->key;
}
// ###################################################################
/**
* Sets the key
*
* @param string $key
*/
public function setKey($key)
{
$this->key = $key;
}
// ###################################################################
/**
* Returns the description
*
* @return string
*/
public function getDescription()
{
return $this->description;
}
// ###################################################################
/**
* Sets the description
*
* @param string $description
*/
public function setDescription($description)
{
$this->description = $description;
}
// ###################################################################
/**
* Returns the value
*
* @return mixed
*/
public function getValue()
{
return $this->value;
}
// ###################################################################
/**
* Sets the value
*
* @param mixed $value
*/
public function setValue($value)
{
$this->value = $value;
}
}
?>