- Developper API  2.0.5
developerApi_2.0.5/Lockable.php
Go to the documentation of this file.
00001 <?php
00014 interface Lockable
00015 {
00016         public function lock();
00017         public function isLocked();
00018 }
00019 
00028 final class Lockables
00029 {
00033         public final static function sendLockException($sender)
00034         {
00035                 throw new Exception(get_class($sender)."'s object is locked.'");
00036         }
00037 }
00038 ?>