Renaming all the classes for the Printer to match the name of the file
[isso.git] / PrinterRootAbstract.php
index de30f39d91286d9021b218c0dde1c4e2cee82360..0f45699809fbd132fd46b92dac3ae1c7d44a7fe2 100644 (file)
 \*=====================================================================*/
 
 /**
-* Printer Root Element (PrinterRootElement.php)
+* Printer Root Element (PrinterRootAbstract.php)
 *
 * @package     ISSO
 */
 
-require_once(ISSO . '/PrinterElement.php');
+require_once(ISSO . '/PrinterAbstract.php');
 
 /**
 * Printer Root Element
@@ -39,7 +39,7 @@ require_once(ISSO . '/PrinterElement.php');
 * @package             ISSO
 *
 */
-abstract class BSPrinterRootElement extends BSPrinterElement
+abstract class BSPrinterRootAbstract extends BSPrinterAbstract
 {
        /**
        * Child elements
@@ -56,11 +56,11 @@ abstract class BSPrinterRootElement extends BSPrinterElement
        /**
        * Adds a child node to the element
        *
-       * @param        BSPrinterElement        A child element
+       * @param        BSPrinterAbstract       A child element
        * 
        * @return       fluent interface
        */
-       public function addChild(BSPrinterElement $child)
+       public function addChild(BSPrinterAbstract $child)
        {
                $this->children[] = $child;
                return $this;