]> git.datanom.net - omvzfs.git/blobdiff - src/Zvol.php
added class templates
[omvzfs.git] / src / Zvol.php
diff --git a/src/Zvol.php b/src/Zvol.php
new file mode 100644 (file)
index 0000000..b5b5941
--- /dev/null
@@ -0,0 +1,99 @@
+<?php
+
+/**
+ * XXX detailed description
+ *
+ * @author    XXX
+ * @version   XXX
+ * @copyright XXX
+ */
+class Zvol {
+    // Attributes
+    /**
+     * XXX
+     *
+     * @var    string $name
+     * @access private
+     */
+    private $_name;
+
+    /**
+     * XXX
+     *
+     * @var    int $size
+     * @access private
+     */
+    private $_size;
+
+    /**
+     * XXX
+     *
+     * @var    string $mountPoint
+     * @access private
+     */
+    private $_mountPoint;
+
+    /**
+     * XXX
+     *
+     * @var    list<Feature> $features
+     * @access private
+     */
+    private $_features;
+
+    // Associations
+    // Operations
+    /**
+     * XXX
+     *
+     * @return string XXX
+     * @access public
+     */
+    public function getName() {
+        trigger_error('Not Implemented!', E_USER_WARNING);
+    }
+
+    /**
+     * XXX
+     *
+     * @return int XXX
+     * @access public
+     */
+    public function getSize() {
+        trigger_error('Not Implemented!', E_USER_WARNING);
+    }
+
+    /**
+     * XXX
+     *
+     * @return string XXX
+     * @access public
+     */
+    public function getMountPoint() {
+        trigger_error('Not Implemented!', E_USER_WARNING);
+    }
+
+    /**
+     * XXX
+     *
+     * @return list<Feature> XXX
+     * @access public
+     */
+    public function getFeatures() {
+        trigger_error('Not Implemented!', E_USER_WARNING);
+    }
+
+    /**
+     * XXX
+     *
+     * @param   $list<Feature> XXX
+     * @return void XXX
+     * @access public
+     */
+    public function setFeatures($list<Feature>) {
+        trigger_error('Not Implemented!', E_USER_WARNING);
+    }
+
+}
+
+?>
This page took 0.030842 seconds and 5 git commands to generate.