- Timestamp:
- 01/12/08 18:37:26 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php
r1127 r1227 8 8 * @subpackage reflection 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable',11 'net .stubbles.reflection.annotations.stubAnnotationFactory',12 'net .stubbles.reflection.stubReflectionClass',13 'net .stubbles.reflection.stubReflectionParameter',14 'net .stubbles.reflection.stubReflectionPrimitive',15 'net .stubbles.reflection.stubReflectionRoutine'10 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 11 'net::stubbles::reflection::annotations::stubAnnotationFactory', 12 'net::stubbles::reflection::stubReflectionClass', 13 'net::stubbles::reflection::stubReflectionParameter', 14 'net::stubbles::reflection::stubReflectionPrimitive', 15 'net::stubbles::reflection::stubReflectionRoutine' 16 16 ); 17 17 /** … … 104 104 * The result is a short but informative representation about the class and 105 105 * its values. Per default, this method returns: 106 * 'net .stubbles.reflection.stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()] {}'106 * 'net::stubbles::reflection::stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()] {}' 107 107 * <code> 108 * net .stubbles.reflection.stubReflectionMethod[MyClass::myMethod()] {108 * net::stubbles::reflection::stubReflectionMethod[MyClass::myMethod()] { 109 109 * } 110 110 * </code> … … 114 114 public function __toString() 115 115 { 116 return 'net .stubbles.reflection.stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n";116 return 'net::stubbles::reflection::stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n"; 117 117 } 118 118
