Changeset 1209 for trunk/src/main/php/net/stubbles/lang/stubBaseObject.php
- Timestamp:
- 01/11/08 01:44:43 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/lang/stubBaseObject.php
r1127 r1209 25 25 public function getClass() 26 26 { 27 stubClassLoader::load('net .stubbles.reflection.stubReflectionObject');27 stubClassLoader::load('net::stubbles::reflection::stubReflectionObject'); 28 28 $refObject = new stubReflectionObject($this); 29 29 return $refObject; … … 38 38 public function getPackage() 39 39 { 40 stubClassLoader::load('net .stubbles.reflection.stubReflectionPackage');40 stubClassLoader::load('net::stubbles::reflection::stubReflectionPackage'); 41 41 $refPackage = new stubReflectionPackage(stubClassLoader::getPackageName($this->getClassName())); 42 42 return $refPackage; … … 99 99 * [fully-qualified-class-name] ' {' [members-and-value-list] '}' 100 100 * <code> 101 * example .MyClass {101 * example::MyClass { 102 102 * foo(string): hello 103 * bar(example .AnotherClass): example.AnotherClass {103 * bar(example::AnotherClass): example::AnotherClass { 104 104 * baz(int): 5 105 105 * } … … 147 147 * [fully-qualified-class-name] ' {' [members-and-value-list] '}' 148 148 * <code> 149 * example .MyClass {149 * example::MyClass { 150 150 * foo(string): hello 151 * bar(example .AnotherClass): example.AnotherClass {151 * bar(example::AnotherClass): example::AnotherClass { 152 152 * baz(int): 5 153 153 * }
