Added interface AddableCriteria
[core.git] / inc / classes / interfaces / result / class_UpdateableResult.php
index f541dc35ae850ebf23f3eff596c194f7cc94737e..897a1e1ddbe96bc256ff9681a89dd1e9c4c55a3a 100644 (file)
@@ -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]