Преглед на файлове

📝 Add documentation to Component class

Pedro Schneider преди 3 години
родител
ревизия
481496af29
променени са 1 файла, в които са добавени 15 реда и са изтрити 0 реда
  1. 15 0
      pandora/components/Component.js

+ 15 - 0
pandora/components/Component.js

@@ -19,8 +19,23 @@
  * along with Pandora.  If not, see <https://www.gnu.org/licenses/>.
  *************************************************************************/
 
+/**
+ * This {@code Component} class represents the base class all Components inherit from.
+ * 
+ * ! This is an empty class the serves only to be inherited from to organize the hierarchy.
+ * ! This class should not bet used by the user.
+ * 
+ * @author Pedro Schneider
+ * 
+ * @class
+ */
 class Component
 {
+    /**
+     * Creates an empty Component.
+     * 
+     * @constructor
+     */
     constructor()
     {}
 }