| 4 |
* This file contains the DesignPattern::Facade class. |
* This file contains the DesignPattern::Facade class. |
| 5 |
* |
* |
| 6 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 7 |
* @module DesignPattern::Facade |
* @name DesignPattern::Facade |
| 8 |
|
* @filesource |
| 9 |
* |
* |
| 10 |
*/ |
* |
| 11 |
|
* <b>Cvs-Log:</b> |
| 12 |
/** |
* |
| 13 |
|
* <pre> |
| 14 |
* $Id$ |
* $Id$ |
| 15 |
* |
* |
| 16 |
* $Log$ |
* $Log$ |
| 17 |
|
* Revision 1.2 2003/03/05 17:02:22 joko |
| 18 |
|
* updated docu (phpDocumentor testing....) |
| 19 |
|
* |
| 20 |
* Revision 1.1 2003/03/03 21:56:01 joko |
* Revision 1.1 2003/03/03 21:56:01 joko |
| 21 |
* + initial commit |
* + initial commit |
| 22 |
* just a skeleton by now... |
* just a skeleton by now... |
| 26 |
|
|
| 27 |
|
|
| 28 |
/** |
/** |
| 29 |
|
* Load required modules: |
| 30 |
|
* |
| 31 |
|
*/ |
| 32 |
|
loadModule('Class::Logger'); |
| 33 |
|
|
| 34 |
|
|
| 35 |
|
/** |
| 36 |
* --- An attempt to implement some software design patterns... |
* --- An attempt to implement some software design patterns... |
| 37 |
* --- FacadePattern |
* --- FacadePattern |
| 38 |
* |
* |
| 43 |
* |
* |
| 44 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 45 |
* @copyright (c) 2003 - All Rights reserved. |
* @copyright (c) 2003 - All Rights reserved. |
| 46 |
* @license GNU LGPL (GNU Lesser General Public License) |
* @link http://www.netfrag.org/~joko/ |
| 47 |
* |
* |
| 48 |
* @author-url http://www.netfrag.org/~joko/ |
* @license GNU LGPL (GNU Lesser General Public License) |
| 49 |
* @license-url http://www.gnu.org/licenses/lgpl.txt |
* @link http://www.gnu.org/licenses/lgpl.txt |
| 50 |
* |
* |
| 51 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 52 |
* @module DesignPattern::Facade |
* @name DesignPattern::Facade |
|
* |
|
|
*/ |
|
|
|
|
|
/** |
|
|
* Todo: |
|
| 53 |
* |
* |
| 54 |
|
* @todo |
| 55 |
|
* <ul> |
| 56 |
* o xyz |
* o xyz |
| 57 |
* o bla, bli, blub |
* o bla, bli, blub |
| 58 |
* |
* </ul> |
| 59 |
* |
* |
| 60 |
*/ |
*/ |
|
|
|
|
/** |
|
|
* Load required modules: |
|
|
* |
|
|
*/ |
|
|
loadModule('Class::Logger'); |
|
|
|
|
| 61 |
class DesignPattern_Facade extends Class_Logger { |
class DesignPattern_Facade extends Class_Logger { |
| 62 |
|
|
| 63 |
var $_about; |
var $_about; |