| 1 |
<? |
<? |
| 2 |
// --------------------------------------------------------------------------- |
/** |
| 3 |
// $Id$ |
* This file contains the Class::Inner class. |
| 4 |
// --------------------------------------------------------------------------- |
* |
| 5 |
// $Log$ |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 6 |
// Revision 1.1 2003/03/03 21:26:30 joko |
* @package org.netfrag.glib |
| 7 |
// refactored from DesignPattern::Bridge |
* @name Class::Inner |
| 8 |
// |
* |
| 9 |
// Revision 1.5 2003/02/27 18:09:56 joko |
*/ |
|
// mungled mechanism to shift in and pass on arguments |
|
|
// |
|
|
// Revision 1.4 2003/02/09 17:07:53 joko |
|
|
// + minor update related to new log level constants |
|
|
// + generic argument merger to show full constructor args |
|
|
// |
|
|
// Revision 1.3 2003/02/03 14:46:57 joko |
|
|
// + wrapped calls to available initializers (constructors, declared startup methods) |
|
|
// - moved logger-code to DesignPattern::Logger |
|
|
// |
|
|
// Revision 1.2 2003/02/03 05:01:27 joko |
|
|
// + now attributes can get passed in to the constructors |
|
|
// |
|
|
// Revision 1.1 2003/02/03 03:33:48 joko |
|
|
// + initial commit |
|
|
// |
|
|
// --------------------------------------------------------------------------- |
|
| 10 |
|
|
| 11 |
|
/** |
| 12 |
|
* <pre> |
| 13 |
|
* --------------------------------------------------------------------------- |
| 14 |
|
* $Id$ |
| 15 |
|
* --------------------------------------------------------------------------- |
| 16 |
|
* $Log$ |
| 17 |
|
* Revision 1.4 2003/03/11 01:42:59 joko |
| 18 |
|
* + fixed metadata for phpDocumentor |
| 19 |
|
* |
| 20 |
|
* Revision 1.3 2003/03/11 01:12:53 joko |
| 21 |
|
* + fixed metadata for phpDocumentor |
| 22 |
|
* |
| 23 |
|
* Revision 1.2 2003/03/05 18:54:43 joko |
| 24 |
|
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 25 |
|
* |
| 26 |
|
* Revision 1.1 2003/03/03 21:26:30 joko |
| 27 |
|
* refactored from DesignPattern::Bridge |
| 28 |
|
* |
| 29 |
|
* Revision 1.5 2003/02/27 18:09:56 joko |
| 30 |
|
* mungled mechanism to shift in and pass on arguments |
| 31 |
|
* |
| 32 |
|
* Revision 1.4 2003/02/09 17:07:53 joko |
| 33 |
|
* + minor update related to new log level constants |
| 34 |
|
* + generic argument merger to show full constructor args |
| 35 |
|
* |
| 36 |
|
* Revision 1.3 2003/02/03 14:46:57 joko |
| 37 |
|
* + wrapped calls to available initializers (constructors, declared startup methods) |
| 38 |
|
* - moved logger-code to DesignPattern::Logger |
| 39 |
|
* |
| 40 |
|
* Revision 1.2 2003/02/03 05:01:27 joko |
| 41 |
|
* + now attributes can get passed in to the constructors |
| 42 |
|
* |
| 43 |
|
* Revision 1.1 2003/02/03 03:33:48 joko |
| 44 |
|
* + initial commit |
| 45 |
|
* |
| 46 |
|
* --------------------------------------------------------------------------- |
| 47 |
|
* </pre> |
| 48 |
|
*/ |
| 49 |
|
|
| 50 |
|
/** |
| 51 |
|
* This requires DesignPattern::Facade as a base class |
| 52 |
|
* |
| 53 |
|
*/ |
| 54 |
loadModule('DesignPattern::Facade'); |
loadModule('DesignPattern::Facade'); |
| 55 |
|
|
| 56 |
|
/** |
| 57 |
|
* Class::Inner |
| 58 |
|
* |
| 59 |
|
* @author Andreas Motl <andreas.motl@ilo.de> |
| 60 |
|
* @copyright (c) 2003 - All Rights reserved. |
| 61 |
|
* @license GNU LGPL (GNU Lesser General Public License) |
| 62 |
|
* |
| 63 |
|
* @link http://www.netfrag.org/~joko/ |
| 64 |
|
* @link http://www.gnu.org/licenses/lgpl.txt |
| 65 |
|
* |
| 66 |
|
* @subpackage Class |
| 67 |
|
* @name Class::Inner |
| 68 |
|
* |
| 69 |
|
*/ |
| 70 |
class Class_Inner extends DesignPattern_Facade { |
class Class_Inner extends DesignPattern_Facade { |
| 71 |
|
|
| 72 |
/* |
/* |