Show
Ignore:
Timestamp:
01/12/08 18:37:26 (9 months ago)
Author:
mikey
Message:

continued refactoring #119: replaced package dots in net::stubbles::reflection

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php

    r1127 r1227  
    88 * @subpackage  reflection 
    99 */ 
    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' 
     10stubClassLoader::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' 
    1616); 
    1717/** 
     
    104104     * The result is a short but informative representation about the class and 
    105105     * 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]'()]  {}' 
    107107     * <code> 
    108      * net.stubbles.reflection.stubReflectionMethod[MyClass::myMethod()] { 
     108     * net::stubbles::reflection::stubReflectionMethod[MyClass::myMethod()] { 
    109109     * } 
    110110     * </code> 
     
    114114    public function __toString() 
    115115    { 
    116         return 'net.stubbles.reflection.stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n"; 
     116        return 'net::stubbles::reflection::stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n"; 
    117117    } 
    118118