Update the comment formatting to not use the pound bar anymore and to put a space...
[isso.git] / PrinterAbstract.php
index 348742f3e6f4f997b914eb6335200ac155228b51..e8ad7d3c4d54e6b98e50f0f2951d4b32c057eaa7 100644 (file)
 \*=====================================================================*/
 
 /**
-* Printer Element Abstract Class (PrinterAbstract.php)
-*
-* @package     ISSO
-*/
+ * Printer Element Abstract Class (PrinterAbstract.php)
+ *
+ * @package    ISSO
+ */
 
 /**
-* Printer Element
-*
-* This abstract class is used for all printer elements and describes
-* the basic functionality of an element.
-*
-* @author              Blue Static
-* @copyright   Copyright (c)2005 - 2008, Blue Static
-* @package             ISSO
-*
-*/
+ * Printer Element
+ *
+ * This abstract class is used for all printer elements and describes
+ * the basic functionality of an element.
+ *
+ * @author             Blue Static
+ * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @package            ISSO
+ *
+ */
 abstract class BSPrinterAbstract
 {
        /**
-       * Style information
-       * @var array
-       */
+        * Style information
+        * @var array
+        */
        protected $style = array();
        
        /**
-       * The CSS class to use
-       * @var string
-       */
+        * The CSS class to use
+        * @var string
+        */
        protected $cssClass = ':swap:';
        
        /**
@@ -56,44 +56,41 @@ abstract class BSPrinterAbstract
        public abstract static function make();
        
        /**
-       * Tells the element to paint itself (and any children)
-       */
+        * Tells the element to paint itself (and any children)
+        */
        public abstract function paint();
        
-       // ###################################################################
        /**
-       * Sets the CSS class to use. Use ":swap:" to alternate
-       *
-       * @param        string  CSS class
-       * 
-       * @return       fluent interface
-       */
+        * Sets the CSS class to use. Use ":swap:" to alternate
+        *
+        * @param       string  CSS class
+        
+        * @return      fluent interface
+        */
        public function setCssClass($class)
        {
                $this->cssClass = $class;
                return $this;
        }
        
-       // ###################################################################
        /**
-       * Sets the style information
-       * 
-       * @param        array Style attributes
-       * 
-       * @return       fluent interface
-       */
+        * Sets the style information
+        
+        * @param       array Style attributes
+        
+        * @return      fluent interface
+        */
        public function setStyle(Array $attributes)
        {
                $this->style = $attributes;
                return $this;
        }
        
-       // ###################################################################
        /**
-       * Returns a string of CSS style attributes
-       *
-       * @return       string  CSS attributes
-       */
+        * Returns a string of CSS style attributes
+        *
+        * @return      string  CSS attributes
+        */
        protected function _prepareStyle()
        {
                if (empty($this->style) && empty($this->cssClass))