Gumbo_Interface_Lockable



Lockable Interface

This just indicates a particular object can be locked, preserving it's state so no changes can be made to it. Once the object is locked, it should not be allowed to be unlocked from the outside.

Author(s): Michael Luster <mluster79@yahoo.com>
License:New BSD License
Copyright:Copyright (c) 2007, iBayou, Michael Luster
Link:http://sourceforge.net/projects/phpgumbo
Version:0.0.1

Interface Methods

public bool isLocked ( ) [line 49]

Returns if the object is currently locked


[ Top ]
public void lock ( ) [line 43]

Locks an object

  • postcondition:  isLocked()

[ Top ]