Show
Ignore:
Timestamp:
01/12/08 18:37:26 (10 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/stubReflectionParameter.php

    r1127 r1227  
    77 * @subpackage  reflection 
    88 */ 
    9 stubClassLoader::load('net.stubbles.reflection.annotations.stubAnnotatable', 
    10                       'net.stubbles.reflection.annotations.stubAnnotationFactory', 
    11                       'net.stubbles.reflection.stubReflectionFunction', 
    12                       'net.stubbles.reflection.stubReflectionClass' 
     9stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 
     10                      'net::stubbles::reflection::annotations::stubAnnotationFactory', 
     11                      'net::stubbles::reflection::stubReflectionFunction', 
     12                      'net::stubbles::reflection::stubReflectionClass' 
    1313); 
    1414/** 
     
    137137     * The result is a short but informative representation about the class and 
    138138     * its values. Per default, this method returns: 
    139      * 'net.stubbles.reflection.stubReflectionParameter['[name-of-reflected-class]'::'[name-of-reflected-function]'(): Argument '[name-of-reflected-argument]']  {}' 
     139     * 'net::stubbles::reflection::stubReflectionParameter['[name-of-reflected-class]'::'[name-of-reflected-function]'(): Argument '[name-of-reflected-argument]']  {}' 
    140140     * <code> 
    141      * net.stubbles.reflection.stubReflectionParameter[MyClass::myMethod(): Argument foo] { 
     141     * net::stubbles::reflection::stubReflectionParameter[MyClass::myMethod(): Argument foo] { 
    142142     * } 
    143      * net.stubbles.reflection.stubReflectionParameter[myFunction(): Argument bar] { 
     143     * net::stubbles::reflection::stubReflectionParameter[myFunction(): Argument bar] { 
    144144     * } 
    145145     * </code> 
     
    150150    { 
    151151        if (is_array($this->routineName) == false) { 
    152             return 'net.stubbles.reflection.stubReflectionParameter[' . $this->routineName . '(): Argument ' . $this->paramName . "] {\n}\n"; 
    153         } 
    154          
    155         return 'net.stubbles.reflection.stubReflectionParameter[' . $this->routineName[0] . '::' . $this->routineName[1] . '(): Argument ' . $this->paramName . "] {\n}\n"; 
     152            return 'net::stubbles::reflection::stubReflectionParameter[' . $this->routineName . '(): Argument ' . $this->paramName . "] {\n}\n"; 
     153        } 
     154         
     155        return 'net::stubbles::reflection::stubReflectionParameter[' . $this->routineName[0] . '::' . $this->routineName[1] . '(): Argument ' . $this->paramName . "] {\n}\n"; 
    156156    } 
    157157