Show
Ignore:
Timestamp:
01/11/08 01:44:43 (8 months ago)
Author:
mikey
Message:

first part of refactoring #119
This breaks star files, they will be fixed next.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/lang/stubBaseObject.php

    r1127 r1209  
    2525    public function getClass() 
    2626    { 
    27         stubClassLoader::load('net.stubbles.reflection.stubReflectionObject'); 
     27        stubClassLoader::load('net::stubbles::reflection::stubReflectionObject'); 
    2828        $refObject = new stubReflectionObject($this); 
    2929        return $refObject; 
     
    3838    public function getPackage() 
    3939    { 
    40          stubClassLoader::load('net.stubbles.reflection.stubReflectionPackage'); 
     40         stubClassLoader::load('net::stubbles::reflection::stubReflectionPackage'); 
    4141         $refPackage = new stubReflectionPackage(stubClassLoader::getPackageName($this->getClassName())); 
    4242         return $refPackage; 
     
    9999     * [fully-qualified-class-name] ' {' [members-and-value-list] '}' 
    100100     * <code> 
    101      * example.MyClass { 
     101     * example::MyClass { 
    102102     *     foo(string): hello 
    103      *     bar(example.AnotherClass): example.AnotherClass { 
     103     *     bar(example::AnotherClass): example::AnotherClass { 
    104104     *         baz(int): 5 
    105105     *     } 
     
    147147     * [fully-qualified-class-name] ' {' [members-and-value-list] '}' 
    148148     * <code> 
    149      * example.MyClass { 
     149     * example::MyClass { 
    150150     *     foo(string): hello 
    151      *     bar(example.AnotherClass): example.AnotherClass { 
     151     *     bar(example::AnotherClass): example::AnotherClass { 
    152152     *         baz(int): 5 
    153153     *     }