Changeset 777

Show
Ignore:
Timestamp:
08/05/07 02:51:13 (1 year ago)
Author:
mikey
Message:

major rework of class locations:
- moved net.stubbles.stubObject, stubBaseObject and stubClonable from net.stubbles to net.stubbles.lang
- moved net.stubbles.stubSerializable, stubSerializableObject and stubSerializedObject to net.stubbles.lang.serialize
- moved net.stubbles.util.exceptions to net.stubbles.lang.exceptions
- moved all exception classes from net.stubbles to net.stubbles.lang.exceptions

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ipo/interceptors/stubInterceptorXJConfInitializer.php

    r737 r777  
    88 */ 
    99stubClassLoader::load('net.stubbles.ipo.interceptors.stubInterceptorInitializer', 
    10                       'net.stubbles.util.xjconf.xjconf', 
    11                       'net.stubbles.util.exceptions.stubIllegalArgumentException
     10                      'net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     11                      'net.stubbles.util.xjconf.xjconf
    1212); 
    1313/** 
  • trunk/src/main/php/net/stubbles/ipo/request/broker/stubRequestBroker.php

    r734 r777  
    1616                      'net.stubbles.ipo.request.broker.annotations.stubStringFilterAnnotation', 
    1717                      'net.stubbles.ipo.request.broker.annotations.stubTextFilterAnnotation', 
    18                       'net.stubbles.reflection.stubReflectionClass', 
    19                       'net.stubbles.util.exceptions.stubIllegalArgumentException
     18                      'net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     19                      'net.stubbles.reflection.stubReflectionClass
    2020); 
    2121/** 
  • trunk/src/main/php/net/stubbles/ipo/request/stubRequestValueError.php

    r720 r777  
    88 */ 
    99stubClassLoader::load('net.stubbles.ipo.request.stubRequestValueErrorException', 
    10                       'net.stubbles.stubClonable' 
     10                      'net.stubbles.lang.stubClonable' 
    1111); 
    1212/** 
  • trunk/src/main/php/net/stubbles/lang/exceptions/stubChainedException.php

    r247 r777  
    33 * Class to chain exceptions, e.g. to wrap php-builtin exceptions. 
    44 *  
    5  * @author   Frank Kleine  <mikey@stubbles.net> 
    6  * @package  stubbles 
     5 * @author      Frank Kleine  <mikey@stubbles.net> 
     6 * @package     stubbles 
     7 * @subpackage  lang_exceptions 
    78 */ 
    89/** 
    910 * Class to chain exceptions, e.g. to wrap php-builtin exceptions. 
    1011 *  
    11  * @package  stubbles 
     12 * @package     stubbles 
     13 * @subpackage  lang_exceptions 
    1214 */ 
    1315abstract class stubChainedException extends stubException 
     
    1921     */ 
    2022    protected $cause; 
    21      
     23 
    2224    /** 
    2325     * constructor 
     
    3133        $this->cause = $cause; 
    3234    } 
    33      
     35 
    3436    /** 
    3537     * returns the cause for this exception 
     
    4143        return $this->cause; 
    4244    } 
    43      
     45 
    4446    /** 
    4547     * returns a string representation of the class 
  • trunk/src/main/php/net/stubbles/lang/exceptions/stubException.php

    r766 r777  
    33 * Base exception class for all stubbles exceptions. 
    44 *  
    5  * @author   Frank Kleine  <mikey@stubbles.net> 
    6  * @package  stubbles 
     5 * @author      Frank Kleine  <mikey@stubbles.net> 
     6 * @package     stubbles 
     7 * @subpackage  lang_exceptions 
    78 */ 
    89/** 
    910 * Base exception class for all stubbles exceptions. 
    1011 *  
    11  * @package  stubbles 
     12 * @package     stubbles 
     13 * @subpackage  lang_exceptions 
    1214 */ 
    1315class stubException extends Exception implements stubObject 
  • trunk/src/main/php/net/stubbles/lang/exceptions/stubFileNotFoundException.php

    r764 r777  
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  util_exceptions 
     7 * @subpackage  lang_exceptions 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.exceptions.stubIOException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIOException'); 
    1010/** 
    1111 * Exception to be thrown in case an IO error occurred. 
     
    1313 * @author      Stephan Schmidt <schst@stubbles.net> 
    1414 * @package     stubbles 
    15  * @subpackage  util_exceptions 
     15 * @subpackage  lang_exceptions 
    1616 */ 
    1717class stubFileNotFoundException extends stubIOException 
  • trunk/src/main/php/net/stubbles/lang/exceptions/stubIOException.php

    r764 r777  
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  util_exceptions 
     7 * @subpackage  lang_exceptions 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubException'); 
    109/** 
    1110 * Exception to be thrown in case an IO error occurred. 
     
    1312 * @author      Stephan Schmidt <schst@stubbles.net> 
    1413 * @package     stubbles 
    15  * @subpackage  util_exceptions 
     14 * @subpackage  lang_exceptions 
    1615 */ 
    1716class stubIOException extends stubException 
  • trunk/src/main/php/net/stubbles/lang/exceptions/stubIllegalArgumentException.php

    r412 r777  
    55 * @author      Frank Kleine <mikey@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  util_exceptions 
     7 * @subpackage  lang_exceptions 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubException'); 
    109/** 
    1110 * Exception to be thrown in case an illegal argument was given. 
    1211 *  
    1312 * @package     stubbles 
    14  * @subpackage  util_exceptions 
     13 * @subpackage  lang_exceptions 
    1514 */ 
    1615class stubIllegalArgumentException extends stubException 
  • trunk/src/main/php/net/stubbles/lang/serialize/stubSerializable.php

    r522 r777  
    33 * Interface for objects that can be serialized. 
    44 *  
    5  * @author   Frank Kleine  <mikey@stubbles.net> 
    6  * @package  stubbles 
     5 * @author      Frank Kleine  <mikey@stubbles.net> 
     6 * @package     stubbles 
     7 * @subpackage  lang_serialize 
    78 */ 
    89/** 
    910 * Interface for objects that can be serialized. 
    1011 *  
    11  * @package  stubbles 
     12 * @package     stubbles 
     13 * @subpackage  lang_serialize 
    1214 */ 
    1315interface stubSerializable extends stubObject 
  • trunk/src/main/php/net/stubbles/lang/serialize/stubSerializableObject.php

    r757 r777  
    44 * extending php built-in classes 
    55 *  
    6  * @author   Frank Kleine  <mikey@stubbles.net> 
    7  * @package  stubbles 
     6 * @author      Frank Kleine  <mikey@stubbles.net> 
     7 * @package     stubbles 
     8 * @subpackage  lang_serialize 
    89 */ 
    910/** 
     
    1112 * extending php built-in classes 
    1213 *  
    13  * @package  stubbles 
     14 * @package     stubbles 
     15 * @subpackage  lang_serialize 
    1416 */ 
    1517class stubSerializableObject extends stubBaseObject implements stubSerializable 
  • trunk/src/main/php/net/stubbles/lang/serialize/stubSerializedObject.php

    r766 r777  
    55 * Using this allows lazy loading of classes stored in session. 
    66 *  
    7  * @author   Frank Kleine  <mikey@stubbles.net> 
    8  * @package  stubbles 
     7 * @author      Frank Kleine  <mikey@stubbles.net> 
     8 * @package     stubbles 
     9 * @subpackage  lang_serialize 
    910 */ 
    1011/** 
     
    1314 * Using this allows lazy loading of classes stored in session. 
    1415 *  
    15  * @package  stubbles 
     16 * @package     stubbles 
     17 * @subpackage  lang_serialize 
    1618 */ 
    1719class stubSerializedObject implements stubObject 
     
    204206     * [fully-qualified-class-name] ' {' [members-and-value-list] '}' 
    205207     * <code> 
    206      * net.stubbles.stubSerializedObject { 
     208     * net.stubbles.lang.serialize.stubSerializedObject { 
    207209     *     class(string): net.stubbles.stubExample 
    208210     *     data(string): [serialized representation of net.stubbles.stubExample] 
  • trunk/src/main/php/net/stubbles/lang/stubBaseObject.php

    r766 r777  
    44 * extending php built-in classes 
    55 * 
    6  * @author   Frank Kleine  <mikey@stubbles.net> 
    7  * @package  stubbles 
     6 * @author      Frank Kleine  <mikey@stubbles.net> 
     7 * @package     stubbles 
     8 * @subpackage  lang 
    89 */ 
    910/** 
     
    1112 * extending php built-in classes 
    1213 * 
    13  * @package  stubbles 
     14 * @package     stubbles 
     15 * @subpackage  lang 
    1416 */ 
    1517class stubBaseObject implements stubObject 
  • trunk/src/main/php/net/stubbles/lang/stubClonable.php

    r720 r777  
    33 * Marker interface for clonable classes. 
    44 *  
    5  * @author   Frank Kleine  <mikey@stubbles.net> 
    6  * @package  stubbles 
     5 * @author      Frank Kleine  <mikey@stubbles.net> 
     6 * @package     stubbles 
     7 * @subpackage  lang 
    78 */ 
    89/** 
    910 * Marker interface for clonable classes. 
    1011 *  
    11  * @package  stubbles 
     12 * @package     stubbles 
     13 * @subpackage  lang 
    1214 */ 
    1315interface stubClonable extends stubObject 
  • trunk/src/main/php/net/stubbles/lang/stubObject.php

    r766 r777  
    44 * extending php built-in classes. 
    55 *  
    6  * @author   Frank Kleine  <mikey@stubbles.net> 
    7  * @package  stubbles 
     6 * @author      Frank Kleine  <mikey@stubbles.net> 
     7 * @package     stubbles 
     8 * @subpackage  lang 
    89 */ 
    910/** 
     
    1112 * extending php built-in classes. 
    1213 *  
    13  * @package  stubbles 
     14 * @package     stubbles 
     15 * @subpackage  lang 
    1416 */ 
    1517interface stubObject 
  • trunk/src/main/php/net/stubbles/php/serializer/stubPHPSerializer.php

    r776 r777  
    77 * @subpackage  php_serializer 
    88 */ 
    9 stubClassLoader::load('net.stubbles.php.serializer.stubFormatException', 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.php.serializer.stubFormatException', 
    1011                      'net.stubbles.php.serializer.stubPHPSerializedData', 
    1112                      'net.stubbles.php.serializer.stubPHPSerializerMapping', 
    1213                      'net.stubbles.php.serializer.stubPHPSerializerObjectMapping', 
    1314                      'net.stubbles.php.serializer.stubPHPSerializerSPLSerializableMapping', 
    14                       'net.stubbles.php.serializer.stubUnknownObject', 
    15                       'net.stubbles.util.exceptions.stubIllegalArgumentException' 
     15                      'net.stubbles.php.serializer.stubUnknownObject' 
    1616); 
    1717/** 
     
    6868     * mappings. 
    6969     * 
    70      * @param  stubPHPSerializerMapping  $mapping 
    71      */ 
    72     public function addMapping(stubPHPSerializerMapping $mapping) 
    73     { 
    74         $this->mappings[$mapping->getToken()] = $mapping; 
    75         $this->classMappingCache              = array(); 
     70     * @param  stubPHPSerializerMapping  $mapping  the mapping to add 
     71     * @param  char                      $token    optional  token to use instead of the default token 
     72     */ 
     73    public function addMapping(stubPHPSerializerMapping $mapping, $token = null) 
     74    { 
     75        if (null === $token) { 
     76            $token = $mapping->getToken(); 
     77        } 
     78         
     79        $this->mappings[$token]  = $mapping; 
     80        $this->classMappingCache = array(); 
    7681    } 
    7782 
  • trunk/src/main/php/net/stubbles/php/serializer/stubPHPSerializerObjectMapping.php

    r776 r777  
    77 * @subpackage  php_serializer 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.exceptions.stubIllegalArgumentException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.php.serializer.stubPHPSerializerMapping' 
     11); 
    1012/** 
    1113 * Class for default serialization of objects. 
  • trunk/src/main/php/net/stubbles/php/serializer/stubPHPSerializerSPLSerializableMapping.php

    r776 r777  
    77 * @subpackage  php_serializer 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.exceptions.stubIllegalArgumentException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.php.serializer.stubPHPSerializerMapping' 
     11); 
    1012/** 
    1113 * Class for serialization of objects that implement the SPL Serializable interface. 
  • trunk/src/main/php/net/stubbles/rdbms/criteria/stubCriterionException.php

    r249 r777  
    77 * @subpackage  rdbms_criteria 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubException'); 
    109/** 
    1110 * Exception for problems with criteria. 
  • trunk/src/main/php/net/stubbles/rdbms/persistence/creator/stubDatabaseCreatorException.php

    r316 r777  
    77 * @subpackage  rdbms_persistence_creator 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception to be thrown if a problem in the creator occurs. 
  • trunk/src/main/php/net/stubbles/rdbms/persistence/eraser/stubDatabaseEraserException.php

    r655 r777  
    77 * @subpackage  rdbms_persistence_eraser 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception to be thrown if a problem in the eraser occurs. 
  • trunk/src/main/php/net/stubbles/rdbms/persistence/finder/stubDatabaseFinderException.php

    r256 r777  
    77 * @subpackage  rdbms_persistence_finder 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception to be thrown if a problem in the finder occurs. 
  • trunk/src/main/php/net/stubbles/rdbms/persistence/stubPersistenceException.php

    r256 r777  
    77 * @subpackage  rdbms_persistence_finder 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubException'); 
    109/** 
    1110 * Exception to be thrown if a problem in the finder occurs. 
  • trunk/src/main/php/net/stubbles/rdbms/querybuilder/stubDatabaseQueryBuilder.php

    r655 r777  
    77 * @subpackage  rdbms_querybuilder 
    88 */ 
    9 stubClassLoader::load('net.stubbles.rdbms.criteria.stubCriterion', 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.rdbms.criteria.stubCriterion', 
    1011                      'net.stubbles.rdbms.querybuilder.stubDatabaseQueryBuilderException', 
    1112                      'net.stubbles.rdbms.querybuilder.stubDatabaseSelect', 
    1213                      'net.stubbles.rdbms.querybuilder.stubDatabaseTableDescription', 
    13                       'net.stubbles.rdbms.querybuilder.stubDatabaseTableRow', 
    14                       'net.stubbles.util.exceptions.stubIllegalArgumentException' 
     14                      'net.stubbles.rdbms.querybuilder.stubDatabaseTableRow' 
    1515); 
    1616/** 
  • trunk/src/main/php/net/stubbles/rdbms/querybuilder/stubDatabaseQueryBuilderException.php

    r256 r777  
    77 * @subpackage  rdbms_querybuilder 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubException'); 
    109/** 
    1110 * Exception to be thrown if a query builder stumbles upon a failure. 
  • trunk/src/main/php/net/stubbles/rdbms/querybuilder/stubDatabaseTableJoin.php

    r678 r777  
    77 * @subpackage  rdbms_querybuilder 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.exceptions.stubIllegalArgumentException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException'); 
    1010/** 
    1111 * Class that contains the description for a database table. 
  • trunk/src/main/php/net/stubbles/rdbms/stubDatabaseException.php

    r245 r777  
    77 * @subpackage  rdbms 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception for general database problems. 
  • trunk/src/main/php/net/stubbles/stubClassLoader.php

    r732 r777  
    210210            } 
    211211 
    212             if ((@include $uri) == false) { 
     212            if ((include $uri) == false) { 
    213213                throw new stubClassNotFoundException($fqClassName); 
    214214            } 
     
    344344 * every other class that should extend it 
    345345 */ 
    346 stubClassLoader::load('net.stubbles.stubObject', 
    347                       'net.stubbles.stubBaseObject', 
    348                       'net.stubbles.stubException', 
    349                       'net.stubbles.stubSerializable', 
    350                       'net.stubbles.stubSerializableObject', 
    351                       'net.stubbles.stubSerializedObject' 
     346stubClassLoader::load('net.stubbles.lang.stubObject', 
     347                      'net.stubbles.lang.stubBaseObject', 
     348                      'net.stubbles.lang.exceptions.stubException', 
     349                      'net.stubbles.lang.serialize.stubSerializable', 
     350                      'net.stubbles.lang.serialize.stubSerializableObject', 
     351                      'net.stubbles.lang.serialize.stubSerializedObject' 
    352352); 
    353353?> 
  • trunk/src/main/php/net/stubbles/util/errorhandler/stubIllegalArgumentErrorHandler.php

    r412 r777  
    77 * @subpackage  util_errorhandler 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.errorhandler.stubErrorHandler', 
    10                       'net.stubbles.util.exceptions.stubIllegalArgumentException
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.util.errorhandler.stubErrorHandler
    1111); 
    1212/** 
  • trunk/src/main/php/net/stubbles/util/ext/stubXPClassLoader.php

    r678 r777  
    77 * @subpackage  util_ext 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.exceptions.stubIllegalArgumentException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException'); 
    1010/** 
    1111 * Class loader that loads classes from the xp framework. 
  • trunk/src/main/php/net/stubbles/util/net/http/stubHTTPConnectionException.php

    r719 r777  
    77 * @subpackage  util_net_http 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception to be thrown when an error on a http connection occurs. 
  • trunk/src/main/php/net/stubbles/util/net/http/stubHTTPURL.php

    r774 r777  
    77 * @subpackage  util_net_http 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.net.stubURL', 
    10                       'net.stubbles.util.exceptions.stubIllegalArgumentException
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.util.net.stubURL
    1111); 
    1212/** 
  • trunk/src/main/php/net/stubbles/util/net/stubHeaderList.php

    r719 r777  
    77 * @subpackage  util_net 
    88 */ 
    9 stubClassLoader::load('net.stubbles.util.net.stubURL', 
    10                       'net.stubbles.util.exceptions.stubIllegalArgumentException
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubIllegalArgumentException', 
     10                      'net.stubbles.util.net.stubURL
    1111); 
    1212/** 
  • trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfException.php

    r312 r777  
    77 * @subpackage  util_xjconf 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception for wrapping xjconf exceptions. 
  • trunk/src/main/php/net/stubbles/websites/processors/stubJsonRpcProcessor.php

    r771 r777  
    332332        $configFile = stubConfig::getConfigPath() . '/xml/' . stubRegistry::getConfig(self::KEY_SERVICE_FILE,'json-rpc-service.xml'); 
    333333        if (!file_exists($configFile) || !is_readable($configFile)) { 
    334             stubClassLoader::load('net.stubbles.util.exceptions.stubFileNotFoundException'); 
     334            stubClassLoader::load('net.stubbles.lang.exceptions.stubFileNotFoundException'); 
    335335            throw new stubFileNotFoundException($configFile); 
    336336        } 
  • trunk/src/main/php/net/stubbles/websites/processors/stubProcessorException.php

    r240 r777  
    77 * @subpackage  websites_processors 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception to be thrown in case something with the processing goes wrong. 
  • trunk/src/main/php/net/stubbles/websites/stubPageConfigurationException.php

    r261 r777  
    77 * @subpackage  websites_pages 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010/** 
    1111 * Exception to be thrown in case the page configuration is wrong. 
  • trunk/src/main/php/net/stubbles/xml/xsl/stubXSLProcessor.php

    r721 r777  
    99stubClassLoader::load('net.stubbles.xml.xsl.stubXSLCallback', 
    1010                      'net.stubbles.xml.xsl.stubXSLProcessorException', 
    11                       'net.stubbles.stubClonable' 
     11                      'net.stubbles.lang.stubClonable' 
    1212); 
    1313/** 
  • trunk/src/test/php/net/stubbles/ipo/request/broker/stubRequestBrokerTestCase.php

    r731 r777  
    5050 
    5151    /** 
    52      * test broking with a class that is not an instance of net.stubbles.stubObject 
     52     * test broking with a class that is not an instance of net.stubbles.lang.stubObject 
    5353     */ 
    5454    public function testWithClassThatIsNotInstanceOfStubObject() 
     
    6868 
    6969    /** 
    70      * test broking with a class that is an instance of net.stubbles.stubObject 
     70     * test broking with a class that is an instance of net.stubbles.lang.stubObject 
    7171     */ 
    7272    public function testWithClassThatIsInstanceOfStubObject() 
  • trunk/src/test/php/net/stubbles/lang/exceptions/stubChainedExceptionTestCase.php

    r168 r777  
    11<?php 
    22/** 
    3  * Tests for net.stubbles.stubChainedException 
     3 * Tests for net.stubbles.lang.exceptions.stubChainedException 
    44 * 
    55 * @author      Frank Kleine <mikey@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  test 
     7 * @subpackage  lang_exceptions_test 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubChainedException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubChainedException'); 
    1010class stub1ChainedException extends stubChainedException 
    1111{ 
     
    2323} 
    2424/** 
    25  * Tests for net.stubbles.stubChainedException 
     25 * Tests for net.stubbles.lang.exceptions.stubChainedException 
    2626 * 
    2727 * @package     stubbles 
    28  * @subpackage  test 
     28 * @subpackage  lang_exceptions_test 
    2929 */ 
    3030class stubChainedExceptionTestCase extends UnitTestCase 
  • trunk/src/test/php/net/stubbles/lang/exceptions/stubExceptionTestCase.php

    r522 r777  
    11<?php 
    22/** 
    3  * Tests for net.stubbles.stubException 
     3 * Tests for net.stubbles.lang.exceptions.stubException 
    44 * 
    55 * @author      Frank Kleine <mikey@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  test 
     7 * @subpackage  lang_exceptions_test 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubException'); 
     9stubClassLoader::load('net.stubbles.lang.exceptions.stubException'); 
    1010class stub1stubException extends stubException 
    1111{ 
     
    2323} 
    2424/** 
    25  * Tests for net.stubbles.stubException 
     25 * Tests for net.stubbles.lang.exceptions.stubException 
    2626 * 
    2727 * @package     stubbles 
    28  * @subpackage  test 
     28 * @subpackage  lang_exceptions_test 
    2929 */ 
    3030class stubExceptionTestCase extends UnitTestCase 
  • trunk/src/test/php/net/stubbles/lang/serialize/stubSerializableObjectTestCase.php

    r522 r777  
    11<?php 
    22/** 
    3  * Tests for net.stubbles.stubBaseObject 
     3 * Tests for net.stubbles.lang.serialize.stubSerializableObject 
    44 * 
    55 * @author      Frank Kleine <mikey@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  test 
     7 * @subpackage  lang_serialize_test 
    88 */ 
    9 stubClassLoader::load('net.stubbles.stubSerializableObject'); 
     9stubClassLoader::load('net.stubbles.lang.serialize.stubSerializableObject'); 
    1010class stub1stubSerializableObject extends stubSerializableObject 
    1111{ 
    &h