Leandro Lucarella ------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ /** * Interface / dummy class for all MLIB_Widget classes. * * @todo Add a global example using all the methods. * @author Leandro Lucarella * @author Martín Marrese * @since 1.0 */ class /* interface */ MLIB_Widget { /** * Converts the widget to a string that is human readable. * * @return The Widget "converted" to a string. * @todo Add an example. */ function __toString() { trigger_error('Not implemented!', E_USER_ERROR); } /** * Draws in the screen the "converted" widget * * @return void. * @todo Add an example. */ function draw() { trigger_error('Not implemented!', E_USER_ERROR); } } ?>