Changeset 253

Show
Ignore:
Timestamp:
02/10/07 16:48:11 (2 years ago)
Author:
mikey
Message:

fixed package names in toString() methods

Files:

Legend:

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

    r252 r253  
    9090     * The result is a short but informative representation about the class and 
    9191     * its values. Per default, this method returns: 
    92      * 'stubReflectionClass['[name-of-reflected-class]']  {}' 
     92     * 'net.stubbles.reflection.stubReflectionClass['[name-of-reflected-class]']  {}' 
    9393     * <code> 
    94      * stubReflectionClass[MyClass] { 
     94     * net.stubbles.reflection.stubReflectionClass[MyClass] { 
    9595     * } 
    9696     * </code> 
     
    100100    public function __toString() 
    101101    { 
    102         return 'reflection.stubReflectionClass[' . $this->className . "] {\n}\n"; 
     102        return 'net.stubbles.reflection.stubReflectionClass[' . $this->className . "] {\n}\n"; 
    103103    } 
    104104     
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionExtension.php

    r97 r253  
    5656     * The result is a short but informative representation about the class and 
    5757     * its values. Per default, this method returns: 
    58      * 'stubReflectionExtension['[name-of-reflected-extension]']  {}' 
     58     * 'net.stubbles.reflection.stubReflectionExtension['[name-of-reflected-extension]']  {}' 
    5959     * <code> 
    60      * stubReflectionExtension[spl] { 
     60     * net.stubbles.reflection.stubReflectionExtension[spl] { 
    6161     * } 
    6262     * </code> 
     
    6666    public function __toString() 
    6767    { 
    68         return 'reflection.stubReflectionExtension[' . $this->extensionName . "] {\n}\n"; 
     68        return 'net.stubbles.reflection.stubReflectionExtension[' . $this->extensionName . "] {\n}\n"; 
    6969    } 
    7070 
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionFunction.php

    r97 r253  
    8787     * The result is a short but informative representation about the class and 
    8888     * its values. Per default, this method returns: 
    89      * 'stubReflectionFunction['[name-of-reflected-function]'()]  {}' 
     89     * 'net.stubbles.reflection.stubReflectionFunction['[name-of-reflected-function]'()]  {}' 
    9090     * <code> 
    91      * stubReflectionFunction[fopen()] { 
     91     * net.stubbles.reflection.stubReflectionFunction[fopen()] { 
    9292     * } 
    9393     * </code> 
     
    9797    public function __toString() 
    9898    { 
    99         return 'reflection.stubReflectionFunction[' . $this->functionName . "()] {\n}\n"; 
     99        return 'net.stubbles.reflection.stubReflectionFunction[' . $this->functionName . "()] {\n}\n"; 
    100100    } 
    101101     
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php

    r97 r253  
    9696     * The result is a short but informative representation about the class and 
    9797     * its values. Per default, this method returns: 
    98      * 'stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()]  {}' 
     98     * 'net.stubbles.reflection.stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()]  {}' 
    9999     * <code> 
    100      * stubReflectionMethod[MyClass::myMethod()] { 
     100     * net.stubbles.reflection.stubReflectionMethod[MyClass::myMethod()] { 
    101101     * } 
    102102     * </code> 
     
    106106    public function __toString() 
    107107    { 
    108         return 'reflection.stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n"; 
     108        return 'net.stubbles.reflection.stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n"; 
    109109    } 
    110110     
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionObject.php

    r252 r253  
    110110     * The result is a short but informative representation about the class and 
    111111     * its values. Per default, this method returns: 
    112      * 'stubReflectionObject['[name-of-reflected-class]']  {}' 
     112     * 'net.stubbles.reflection.stubReflectionObject['[name-of-reflected-class]']  {}' 
    113113     * <code> 
    114      * stubReflectionObject[MyClass] { 
     114     * net.stubbles.reflection.stubReflectionObject[MyClass] { 
    115115     * } 
    116116     * </code> 
     
    120120    public function __toString() 
    121121    { 
    122         return 'reflection.stubReflectionObject[' . $this->className . "] {\n}\n"; 
     122        return 'net.stubbles.reflection.stubReflectionObject[' . $this->className . "] {\n}\n"; 
    123123    } 
    124124     
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionParameter.php

    r97 r253  
    7474     * The result is a short but informative representation about the class and 
    7575     * its values. Per default, this method returns: 
    76      * 'stubReflectionParameter['[name-of-reflected-class]'::'[name-of-reflected-function]'(): Argument '[name-of-reflected-argument]']  {}' 
     76     * 'net.stubbles.reflection.stubReflectionParameter['[name-of-reflected-class]'::'[name-of-reflected-function]'(): Argument '[name-of-reflected-argument]']  {}' 
    7777     * <code> 
    78      * stubReflectionParameter[MyClass::myMethod(): Argument foo] { 
     78     * net.stubbles.reflection.stubReflectionParameter[MyClass::myMethod(): Argument foo] { 
    7979     * } 
    80      * stubReflectionParameter[myFunction(): Argument bar] { 
     80     * net.stubbles.reflection.stubReflectionParameter[myFunction(): Argument bar] { 
    8181     * } 
    8282     * </code> 
     
    8888        $class = $this->getDeclaringClass(); 
    8989        if (null == $class) { 
    90             return 'reflection.stubReflectionParameter[' . $this->functionName . '(): Argument ' . $this->paramName . "] {\n}\n"; 
     90            return 'net.stubbles.reflection.stubReflectionParameter[' . $this->functionName . '(): Argument ' . $this->paramName . "] {\n}\n"; 
    9191        } 
    9292         
    93         return 'reflection.stubReflectionParameter[' . $class->getName() . '::' . $this->functionName . '(): Argument ' . $this->paramName . "] {\n}\n"; 
     93        return 'net.stubbles.reflection.stubReflectionParameter[' . $class->getName() . '::' . $this->functionName . '(): Argument ' . $this->paramName . "] {\n}\n"; 
    9494    } 
    9595     
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionProperty.php

    r97 r253  
    9797     * The result is a short but informative representation about the class and 
    9898     * its values. Per default, this method returns: 
    99      * 'stubReflectionProperty['[name-of-reflected-class]'::'[name-of-reflected-property]']  {}' 
     99     * 'net.stubbles.reflection.stubReflectionProperty['[name-of-reflected-class]'::'[name-of-reflected-property]']  {}' 
    100100     * <code> 
    101      * stubReflectionProperty[MyClass::myProperty] { 
     101     * net.stubbles.reflection.stubReflectionProperty[MyClass::myProperty] { 
    102102     * } 
    103103     * </code> 
     
    107107    public function __toString() 
    108108    { 
    109         return 'reflection.stubReflectionProperty[' . $this->className . '::' . $this->propertyName . "] {\n}\n"; 
     109        return 'net.stubbles.reflection.stubReflectionProperty[' . $this->className . '::' . $this->propertyName . "] {\n}\n"; 
    110110    } 
    111111