Update the comment formatting to not use the pound bar anymore and to put a space...
[isso.git] / PrinterRootAbstract.php
index 0f45699809fbd132fd46b92dac3ae1c7d44a7fe2..ab6ca2a01498d8290282e8cab0e39351acaea6da 100644 (file)
 \*=====================================================================*/
 
 /**
-* Printer Root Element (PrinterRootAbstract.php)
-*
-* @package     ISSO
-*/
+ * Printer Root Element (PrinterRootAbstract.php)
+ *
+ * @package    ISSO
+ */
 
 require_once(ISSO . '/PrinterAbstract.php');
 
 /**
-* Printer Root Element
-*
-* This is a root element class. That means that elements can be printed
-* directly into this and this can stand alone as a page. However, that
-* does not mean that all root elements produce valid XHTML.
-*
-* @author              Blue Static
-* @copyright   Copyright (c)2005 - 2008, Blue Static
-* @package             ISSO
-*
-*/
+ * Printer Root Element
+ *
+ * This is a root element class. That means that elements can be printed
+ * directly into this and this can stand alone as a page. However, that
+ * does not mean that all root elements produce valid XHTML.
+ *
+ * @author             Blue Static
+ * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @package            ISSO
+ *
+ */
 abstract class BSPrinterRootAbstract extends BSPrinterAbstract
 {
        /**
-       * Child elements
-       * @var string
-       */
+        * Child elements
+        * @var string
+        */
        protected $children = array();
        
        /**
-       * Returns all of the children painted in the right order
-       */
+        * Returns all of the children painted in the right order
+        */
        protected abstract function _paintChildren();
        
-       // ###################################################################
        /**
-       * Adds a child node to the element
-       *
-       * @param        BSPrinterAbstract       A child element
-       * 
-       * @return       fluent interface
-       */
+        * Adds a child node to the element
+        *
+        * @param       BSPrinterAbstract       A child element
+        
+        * @return      fluent interface
+        */
        public function addChild(BSPrinterAbstract $child)
        {
                $this->children[] = $child;