]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/result/class_UpdateableResult.php
Renamed more and moved code to Block interface.
[core.git] / inc / classes / interfaces / result / class_UpdateableResult.php
index 42542ed238b3f22ae1a0f00e4b5a1aeee3ee81e2..990915c4b714f1b63208dee10f7bd415105cd812 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for searchable results
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core 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
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface UpdateableResult extends FrameworkInterface {
+interface UpdateableResult extends AddableCriteria {
        /**
         * Adds an update request to the database result for writing it to the
         * database layer
@@ -31,14 +31,6 @@ interface UpdateableResult extends FrameworkInterface {
         * @throws      ResultUpdateException   If no result was updated
         */
        function add2UpdateQueue (LocalUpdateCriteria $criteriaInstance);
-
-       /**
-        * Adds registration elements to a given dataset instance
-        *
-        * @param       $criteriaInstance       An instance of a storeable criteria
-        * @return      void
-        */
-       function addElementsToDataSet (StoreableCriteria $criteriaInstance);
 }
 
 // [EOF]