/[cvs]/nfo/php/libs/org.netfrag.glib/DesignPattern/Proxy.php
ViewVC logotype

Diff of /nfo/php/libs/org.netfrag.glib/DesignPattern/Proxy.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by joko, Wed Mar 5 12:12:42 2003 UTC revision 1.6 by joko, Mon Mar 10 22:31:56 2003 UTC
# Line 1  Line 1 
1  <?php  <?php
   
2  /**  /**
3   * This file contains the DesignPattern::Proxy class.   * This file contains the DesignPattern::Proxy class
4   *   *
5   * @author Andreas Motl <andreas.motl@ilo.de>   * @author Andreas Motl <andreas.motl@ilo.de>
6   * @module DesignPattern::Proxy   * @package org.netfrag.glib
7     * @name DesignPattern::Proxy
8   *   *
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
28     * updated docu (phpDocumentor testing....)
29     *
30   * Revision 1.2  2003/03/05 12:12:42  joko   * Revision 1.2  2003/03/05 12:12:42  joko
31   * re-renamed methods and privates: _handler becomes _proxy again   * re-renamed methods and privates: _handler becomes _proxy again
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  /**  /**
49   * --- An attempt to implement some software design patterns...   * An attempt to implement some software design patterns...
50   * --- ProxyPattern   * --- ProxyPattern
51   *   *
52   * --- http://c2.com/cgi-bin/wiki?ProxyPattern   * @link http://c2.com/cgi-bin/wiki?ProxyPattern
53   *   *
54   * @author Andreas Motl <andreas.motl@ilo.de>   * @author Andreas Motl <andreas.motl@ilo.de>
55     * @link http://www.netfrag.org/~joko/
56     *
57   * @copyright (c) 2003 - All Rights reserved.   * @copyright (c) 2003 - All Rights reserved.
58   * @license GNU LGPL (GNU Lesser General Public License)   * @license GNU LGPL (GNU Lesser General Public License)
59   *   * @link http://www.gnu.org/licenses/lgpl.txt
  * @author-url http://www.netfrag.org/~joko/  
  * @license-url http://www.gnu.org/licenses/lgpl.txt  
60   *   *
61   * @package org.netfrag.glib   * @package org.netfrag.glib
62   * @module DesignPattern::Proxy   * @subpackage DesignPattern
63   *   * @name DesignPattern::Proxy
  */  
   
 /**  
  * Todo:  
  *  
  *    x DesignPattern::DecoratorProxy  (->decorate)  
  *    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?)  
   
   
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 (o) DesignPattern::GenericAdapterProxy???
69     * @todo   (o) no 'locator/query' or 'type/component'
70     * @todo   (o) even more generic: just 'adapter_metadata'    (-> global adapter registry?)
71   *   *
72   */   */
   
 /**  
  * Load required modules:  
  *  
  */  
 loadModule('Class::Logger');  
   
73  class DesignPattern_Proxy extends Class_Logger {  class DesignPattern_Proxy extends Class_Logger {
74    
75    /**    /**

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.6

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed