More game classes added:
[shipsimu.git] / inc / classes / interfaces / database / class_Updateable.php
index 61e64e38501af6b8a1bdc162b255a9c789ba7624..ba8de80fb7a9ad162d5ab94892c562bf5c11e8b7 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface Updateable extends FrameworkInterface {
+       /**
+        * Updates a given field with new value
+        *
+        * @param       $fieldName              Field to update
+        * @param       $fieldValue             New value to store
+        * @return      void
+        * @throws      DatabaseUpdateSupportException  If this class does not support database updates
+        */
+       function updateDatabaseField ($fieldName, $fieldValue);
 }
 
 //