Introduced new setter/getter and generic interface:
[core.git] / inc / classes / interfaces / compressor / class_Compressor.php
index 0e8dfcb4415471caa086fb4f30686b91edc6e862..c9c5e811c8599861999e1e70daa9e6aa22761c80 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -25,8 +25,8 @@ interface Compressor extends FrameworkInterface {
        /**
         * A compression stream
         *
-        * @param               $streamData                     Mixed non-object stream data
-        * @return      $streamData                     The compressed stream data
+        * @param       $streamData             Mixed non-object stream data
+        * @return      $streamData             The compressed stream data
         * @throws      InvalidObjectException  If the stream is an object
         */
        function compressStream ($streamData);
@@ -34,8 +34,8 @@ interface Compressor extends FrameworkInterface {
        /**
         * A decompression stream
         *
-        * @param               $streamData                     Mixed non-object stream data
-        * @return      $streamData                     The decompressed stream data
+        * @param       $streamData             Mixed non-object stream data
+        * @return      $streamData             The decompressed stream data
         * @throws      InvalidObjectException  If the stream is an object
         */
        function decompressStream ($streamData);