]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/Widget.php
Bug Fix en MLIB_PDF_Tabla. Faltaba inicializar una variable, lo que hacia fallar...
[mecon/meconlib.git] / lib / MLIB / Widget.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU Lesser General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 
15 details.
16  
17 You should have received a copy of the GNU Lesser General Public License; if 
18 not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Created: lun ago  2 09:50:35 ART 2004
22 Authors: Martín Marrese <m_marrese@argentina.com>
23          Leandro Lucarella <luca@llucax.hn.org>
24 -------------------------------------------------------------------------------
25 $Id$
26 -----------------------------------------------------------------------------*/
27
28 /**
29  * Interface / dummy class for all MLIB_Widget classes.
30  *
31  * @todo Add a global example using all the methods.
32  * @author Leandro Lucarella <luca@llucax.hn.org>
33  * @author Martín Marrese <m_marrese@argentina.com>
34  * @since  1.0
35  */
36 class /* interface */ MLIB_Widget {
37     
38     /**
39      * Converts the widget to a string that is human readable.
40      *
41      * @return The Widget "converted" to a string.
42      * @todo Add an example.
43      */
44     function __toString()
45     {
46         trigger_error('Not implemented!', E_USER_ERROR);
47     }
48
49     /**
50      * Draws in the screen the "converted" widget
51      *
52      * @return void.
53      * @todo Add an example.
54      */
55     function draw()
56     {
57         trigger_error('Not implemented!', E_USER_ERROR);
58     }
59 }
60
61 ?>