* @version XXX
* @copyright XXX
*/
-class Dataset {
+class OMVModuleZFSDataset {
// Attributes
/**
- * XXX
+ * Name of Dataset
*
* @var string $name
* @access private
*/
- private $_name;
+ private $name;
/**
* XXX
// Associations
// Operations
/**
- * XXX
+ * Return name of the Dataset
*
- * @return string XXX
+ * @return string $name
* @access public
*/
public function getName() {
- trigger_error('Not Implemented!', E_USER_WARNING);
+ return $this->name;
}
/**
* @return void XXX
* @access public
*/
- public function setFeatures($list<Feature>) {
+ public function setFeatures($list) {
trigger_error('Not Implemented!', E_USER_WARNING);
}