| 4 |
* This file contains the DesignPattern::TransparentProxy class. |
* This file contains the DesignPattern::TransparentProxy class. |
| 5 |
* |
* |
| 6 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 7 |
* @module DesignPattern::TransparentProxy |
* @package org.netfrag.glib |
| 8 |
|
* @name DesignPattern::TransparentProxy |
| 9 |
* |
* |
| 10 |
*/ |
*/ |
| 11 |
|
|
| 13 |
* $Id$ |
* $Id$ |
| 14 |
* |
* |
| 15 |
* $Log$ |
* $Log$ |
| 16 |
|
* Revision 1.3 2003/03/05 17:28:43 joko |
| 17 |
|
* updated docu (phpDocumentor testing....) |
| 18 |
|
* |
| 19 |
* Revision 1.2 2003/03/05 12:14:55 joko |
* Revision 1.2 2003/03/05 12:14:55 joko |
| 20 |
* re-renamed methods and privates: _handler becomes _proxy again |
* re-renamed methods and privates: _handler becomes _proxy again |
| 21 |
* |
* |
| 27 |
|
|
| 28 |
|
|
| 29 |
/** |
/** |
| 30 |
|
* Load required modules: |
| 31 |
|
* |
| 32 |
|
*/ |
| 33 |
|
loadModule('DesignPattern::Proxy'); |
| 34 |
|
|
| 35 |
|
|
| 36 |
|
/** |
| 37 |
* --- An attempt to implement some software design patterns... |
* --- An attempt to implement some software design patterns... |
| 38 |
* --- TransparentProxy |
* --- TransparentProxy |
| 39 |
* |
* |
| 40 |
* --- http://c2.com/cgi-bin/wiki?ProxyPattern |
* @link http://c2.com/cgi-bin/wiki?ProxyPattern |
|
* |
|
|
* @author Andreas Motl <andreas.motl@ilo.de> |
|
|
* @copyright (c) 2003 - All Rights reserved. |
|
|
* @license GNU LGPL (GNU Lesser General Public License) |
|
| 41 |
* |
* |
|
* @author-url http://www.netfrag.org/~joko/ |
|
|
* @license-url http://www.gnu.org/licenses/lgpl.txt |
|
| 42 |
* |
* |
| 43 |
|
* @name DesignPattern::TransparentProxy |
| 44 |
|
* @subpackage DesignPattern |
| 45 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
|
* @module DesignPattern::TransparentProxy |
|
| 46 |
* |
* |
| 47 |
*/ |
* @link http://www.gnu.org/licenses/lgpl.txt |
| 48 |
|
* @license GNU LGPL (GNU Lesser General Public License) |
| 49 |
|
* |
| 50 |
/** |
* @link http://www.netfrag.org/~joko/ |
| 51 |
* Load required modules: |
* @copyright (c) 2003 - All Rights reserved. |
| 52 |
|
* @author Andreas Motl <andreas.motl@ilo.de> |
| 53 |
* |
* |
| 54 |
*/ |
*/ |
|
loadModule('DesignPattern::Proxy'); |
|
|
|
|
| 55 |
class DesignPattern_TransparentProxy extends DesignPattern_Proxy { |
class DesignPattern_TransparentProxy extends DesignPattern_Proxy { |
| 56 |
|
|
| 57 |
/* |
/* |