| 6 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 7 |
* @name DesignPattern::Proxy |
* @name DesignPattern::Proxy |
| 8 |
* |
* |
|
*/ |
|
|
|
|
|
/** |
|
|
* Cvs-Log: |
|
| 9 |
* |
* |
| 10 |
|
* |
| 11 |
|
* |
| 12 |
|
* <b>Cvs-Log:</b> |
| 13 |
|
* |
| 14 |
|
* <pre> |
| 15 |
* $Id$ |
* $Id$ |
| 16 |
* |
* |
| 17 |
* $Log$ |
* $Log$ |
| 18 |
|
* Revision 1.6 2003/03/10 22:31:56 joko |
| 19 |
|
* + fixed metadata for phpDocumentor |
| 20 |
|
* |
| 21 |
|
* Revision 1.5 2003/03/05 17:28:43 joko |
| 22 |
|
* updated docu (phpDocumentor testing....) |
| 23 |
|
* |
| 24 |
|
* Revision 1.4 2003/03/05 16:32:18 joko |
| 25 |
|
* updated docu (phpDocumentor testing....) |
| 26 |
|
* |
| 27 |
* Revision 1.3 2003/03/05 16:10:17 joko |
* Revision 1.3 2003/03/05 16:10:17 joko |
| 28 |
* updated docu (phpDocumentor testing....) |
* updated docu (phpDocumentor testing....) |
| 29 |
* |
* |
| 32 |
* |
* |
| 33 |
* Revision 1.1 2003/03/03 22:05:25 joko |
* Revision 1.1 2003/03/03 22:05:25 joko |
| 34 |
* abstract implementation... ;-) |
* abstract implementation... ;-) |
| 35 |
|
* </pre> |
| 36 |
|
* |
| 37 |
* |
* |
| 38 |
|
*/ |
| 39 |
|
|
| 40 |
|
|
| 41 |
|
/** |
| 42 |
|
* Load required modules: |
| 43 |
* |
* |
| 44 |
*/ |
*/ |
| 45 |
|
loadModule('Class::Logger'); |
| 46 |
|
|
| 47 |
|
|
| 48 |
/** |
/** |
| 59 |
* @link http://www.gnu.org/licenses/lgpl.txt |
* @link http://www.gnu.org/licenses/lgpl.txt |
| 60 |
* |
* |
| 61 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 62 |
|
* @subpackage DesignPattern |
| 63 |
* @name DesignPattern::Proxy |
* @name DesignPattern::Proxy |
| 64 |
* |
* |
| 65 |
*/ |
* @todo (x) DesignPattern::DecoratorProxy (->decorate) |
| 66 |
|
* @todo (x) DesignPattern::TransparentProxy (->make_transparent) |
| 67 |
/** |
* @todo (o) DesignPattern::MultiProxy (->both???) (diamond inheritance? possible in php?) |
| 68 |
* @todo |
* @todo (o) DesignPattern::GenericAdapterProxy??? |
| 69 |
* <pre> |
* @todo (o) no 'locator/query' or 'type/component' |
| 70 |
* x DesignPattern::DecoratorProxy (->decorate) |
* @todo (o) even more generic: just 'adapter_metadata' (-> global adapter registry?) |
|
* x DesignPattern::TransparentProxy (->make_transparent) |
|
|
* o DesignPattern::MultiProxy (->both???) (diamond inheritance? possible in php?) |
|
|
* o DesignPattern::GenericAdapterProxy??? |
|
|
* o no 'locator/query' or 'type/component' |
|
|
* o even more generic: just 'adapter_metadata' (-> global adapter registry?) |
|
|
* </pre> |
|
|
* |
|
|
*/ |
|
|
|
|
|
/** |
|
|
* Load required modules: |
|
| 71 |
* |
* |
| 72 |
*/ |
*/ |
|
loadModule('Class::Logger'); |
|
|
|
|
| 73 |
class DesignPattern_Proxy extends Class_Logger { |
class DesignPattern_Proxy extends Class_Logger { |
| 74 |
|
|
| 75 |
/** |
/** |