- Timestamp:
- 01/11/08 01:44:43 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/lang/exceptions/stubException.php
r887 r1209 23 23 public function getClass() 24 24 { 25 stubClassLoader::load('net .stubbles.reflection.stubReflectionObject');25 stubClassLoader::load('net::stubbles::reflection::stubReflectionObject'); 26 26 $refObject = new stubReflectionObject($this); 27 27 return $refObject; … … 36 36 public function getPackage() 37 37 { 38 stubClassLoader::load('net .stubbles.reflection.stubReflectionPackage');38 stubClassLoader::load('net::stubbles::reflection::stubReflectionPackage'); 39 39 $refPackage = new stubReflectionPackage(stubClassLoader::getPackageName($this->getClassName())); 40 40 return $refPackage; … … 96 96 * [fully-qualified-class-name] ' {' [members-and-value-list] '}' 97 97 * <code> 98 * example .MyException {98 * example::MyException { 99 99 * message(string): This is an exception. 100 100 * file(string): foo.php
