]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/HTML_Noticia.php
(no commit message)
[mecon/intranet.git] / sistema / local_lib / HTML_Noticia.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                             Intranet                              |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet.                                    |
8 // |                                                                    |
9 // | Intranet is free software; you can redistribute it and/or modify  |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | Intranet is distributed in the hope that it will be useful, but   |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Jul 3 14:43:38 2003                                   |
24 // | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                                                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
28 //
29
30
31
32 // +X2C includes
33 require_once 'HTML_Table.php';
34 // ~X2C
35
36 // +X2C Class 162 :HTML_Noticia
37 /**
38  * @access public
39  */
40 class HTML_Noticia extends HTML_Table {
41     /**
42      * @var    noticia $noticia
43      * @access public
44      */
45     var $noticia;
46
47     // ~X2C
48
49     // +X2C Operation 166
50     /**
51      * @return void
52      * @access public
53      */
54     function toHTML() // ~X2C
55     {
56         trigger_error('Not implemented!', E_USER_WARNING);
57     }
58     // -X2C
59
60     // +X2C Operation 167
61     /**
62      * @param  noticia $noticia 
63      *
64      * @return void
65      * @access public
66      */
67     function HTML_Noticia($noticia) // ~X2C
68     {
69         trigger_error('Not implemented!', E_USER_WARNING);
70     }
71     // -X2C
72
73
74     // +X2C Operation 175
75     /**
76      * @param  bool $completa 
77      *
78      * @return void
79      * @access public
80      */
81     function setCompleta($completa) // ~X2C
82     {
83         trigger_error('Not implemented!', E_USER_WARNING);
84     }
85     // -X2C
86
87     // +X2C Operation 176
88     /**
89      * @param  bool $nuevo 
90      *
91      * @return void
92      * @access public
93      */
94     function setNuevo($nuevo) // ~X2C
95     {
96         trigger_error('Not implemented!', E_USER_WARNING);
97     }
98     // -X2C
99
100 } // -X2C Class :HTML_Noticia
101 ?>