]> git.mxchange.org Git - hub.git/blobdiff - application/hub/interfaces/handler/class_Handleable.php
Refacturing to pass a ProtocolHandler instance instead of the direct name. This
[hub.git] / application / hub / interfaces / handler / class_Handleable.php
index 074157e70109b91ef956a7d8a7db8cc7f44df817..66c0c296b0ba033f49c7b9db483defb4cea93b6b 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A Handleable interface
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface Handleable extends FrameworkInterface {
+       /**
+        * Adds all required elements from given array into data set instance
+        *
+        * @param       $dataSetInstance        An instance of a StoreableCriteria class
+        * @param       $messageData            An array with all message data
+        * @return      void
+        */
+       function addArrayToDataSet (StoreableCriteria $dataSetInstance, array $messageData);
 }
 
 // [EOF]