Changeset 1227
- Timestamp:
- 01/12/08 18:37:26 (4 months ago)
- Files:
-
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAnnotationState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationArgumentState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationDocblockState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationNameState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamNameState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamValueState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamsState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTextState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTypeState.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationStateParser.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/stubAbstractAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationFactory.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubBaseReflectionClass.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionExtension.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionFunction.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionObject.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionParameter.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionPrimitive.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionProperty.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionRoutine.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAnnotationStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationArgumentStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationDocblockStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationNameStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamNameStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamValueStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamsStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTextStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTypeStateTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/stubAnnotationStateParserTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/stubAnnotationFactoryApplicableTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/stubAnnotationFactoryBuildTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/reflection/annotations/stubAnnotationFactoryTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionExtensionTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionFunctionTestCase.php (modified) (4 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionMethodTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionObjectTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionParameterTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionPrimitiveTestCase.php (modified) (11 diffs)
- trunk/src/test/php/net/stubbles/reflection/stubReflectionPropertyTestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAnnotationState.php
r1072 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationArgumentState.php
r1127 r1227 7 7 * @subpackage reflection_annotations_parser_state 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',10 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 10 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationDocblockState.php
r502 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationNameState.php
r1072 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamNameState.php
r488 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamValueState.php
r1127 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamsState.php
r488 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationState.php
r1072 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.stubAnnotationParser');10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::stubAnnotationParser'); 11 11 /** 12 12 * Interface for an annotation parser state trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTextState.php
r469 r1227 7 7 * @subpackage reflection_annotations_parser_state 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',10 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 10 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTypeState.php
r1127 r1227 8 8 * @subpackage reflection_annotations_parser_state 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAbstractState',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAbstractState', 11 'net::stubbles::reflection::annotations::parser::state::stubAnnotationState' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationStateParser.php
r1127 r1227 8 8 * @subpackage reflection_annotations_parser 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.parser.stubAnnotationParser',11 'net .stubbles.reflection.annotations.parser.state.stubAnnotationArgumentState',12 'net .stubbles.reflection.annotations.parser.state.stubAnnotationDocblockState',13 'net .stubbles.reflection.annotations.parser.state.stubAnnotationAnnotationState',14 'net .stubbles.reflection.annotations.parser.state.stubAnnotationNameState',15 'net .stubbles.reflection.annotations.parser.state.stubAnnotationParamNameState',16 'net .stubbles.reflection.annotations.parser.state.stubAnnotationParamsState',17 'net .stubbles.reflection.annotations.parser.state.stubAnnotationParamValueState',18 'net .stubbles.reflection.annotations.parser.state.stubAnnotationTextState',19 'net .stubbles.reflection.annotations.parser.state.stubAnnotationTypeState'10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::stubAnnotationParser', 11 'net::stubbles::reflection::annotations::parser::state.stubAnnotationArgumentState', 12 'net::stubbles::reflection::annotations::parser::state.stubAnnotationDocblockState', 13 'net::stubbles::reflection::annotations::parser::state.stubAnnotationAnnotationState', 14 'net::stubbles::reflection::annotations::parser::state.stubAnnotationNameState', 15 'net::stubbles::reflection::annotations::parser::state.stubAnnotationParamNameState', 16 'net::stubbles::reflection::annotations::parser::state.stubAnnotationParamsState', 17 'net::stubbles::reflection::annotations::parser::state.stubAnnotationParamValueState', 18 'net::stubbles::reflection::annotations::parser::state.stubAnnotationTextState', 19 'net::stubbles::reflection::annotations::parser::state.stubAnnotationTypeState' 20 20 ); 21 21 /** trunk/src/main/php/net/stubbles/reflection/annotations/stubAbstractAnnotation.php
r757 r1227 7 7 * @subpackage reflection_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation');9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation'); 10 10 /** 11 11 * Abstract base class for annotations trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotation.php
r1072 r1227 7 7 * @subpackage reflection_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.lang.stubClonable');9 stubClassLoader::load('net::stubbles::lang::stubClonable'); 10 10 /** 11 11 * Interface for an annotation. trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationFactory.php
r1127 r1227 8 8 * @subpackage reflection_annotations 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotation',11 'net .stubbles.reflection.annotations.stubAnnotationCache'10 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 11 'net::stubbles::reflection::annotations::stubAnnotationCache' 12 12 ); 13 13 /** … … 63 63 if (isset(self::$annotations[$hash]) === false) { 64 64 if (null === self::$parser) { 65 stubClassLoader::load('net .stubbles.reflection.annotations.parser.stubAnnotationStateParser');65 stubClassLoader::load('net::stubbles::reflection::annotations::parser::stubAnnotationStateParser'); 66 66 self::$parser = new stubAnnotationStateParser(); 67 67 } … … 80 80 81 81 if (($annotation instanceof stubAnnotation) === false) { 82 throw new ReflectionException('The annotation: ' . $annotationName . ' is not an instance of net .stubbles.reflection.annotations.stubAnnotation.');82 throw new ReflectionException('The annotation: ' . $annotationName . ' is not an instance of net::stubbles::reflection::annotations::stubAnnotation.'); 83 83 } 84 84 trunk/src/main/php/net/stubbles/reflection/stubBaseReflectionClass.php
r1016 r1227 7 7 * @subpackage reflection 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable',10 'net .stubbles.reflection.stubReflectionType'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 10 'net::stubbles::reflection::stubReflectionType' 11 11 ); 12 12 /** 13 13 * Marker interface for stubReflectionClass and stubReflectionObject. 14 14 * 15 * This markerinterface allows to use16 * net .stubbles.reflection.stubReflectionClass and17 * net .stubbles.reflection.stubReflectionObject on18 * the same argument when th is argument typehinted.15 * This interface allows to use 16 * net::stubbles::reflection::stubReflectionClass and 17 * net::stubbles::reflection::stubReflectionObject on 18 * the same argument when the argument is typehinted with this interface. 19 19 * 20 20 * @package stubbles trunk/src/main/php/net/stubbles/reflection/stubReflectionExtension.php
r253 r1227 7 7 * @subpackage reflection 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.stubReflectionClass',10 'net .stubbles.reflection.stubReflectionFunction'9 stubClassLoader::load('net::stubbles::reflection::stubReflectionClass', 10 'net::stubbles::reflection::stubReflectionFunction' 11 11 ); 12 12 /** … … 56 56 * The result is a short but informative representation about the class and 57 57 * its values. Per default, this method returns: 58 * 'net .stubbles.reflection.stubReflectionExtension['[name-of-reflected-extension]'] {}'58 * 'net::stubbles::reflection::stubReflectionExtension['[name-of-reflected-extension]'] {}' 59 59 * <code> 60 * net .stubbles.reflection.stubReflectionExtension[spl] {60 * net::stubbles::reflection::stubReflectionExtension[spl] { 61 61 * } 62 62 * </code> … … 66 66 public function __toString() 67 67 { 68 return 'net .stubbles.reflection.stubReflectionExtension[' . $this->extensionName . "] {\n}\n";68 return 'net::stubbles::reflection::stubReflectionExtension[' . $this->extensionName . "] {\n}\n"; 69 69 } 70 70 trunk/src/main/php/net/stubbles/reflection/stubReflectionFunction.php
r1083 r1227 8 8 * @subpackage reflection 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable',11 'net .stubbles.reflection.annotations.stubAnnotationFactory',12 'net .stubbles.reflection.stubReflectionClass',13 'net .stubbles.reflection.stubReflectionParameter',14 'net .stubbles.reflection.stubReflectionPrimitive',15 'net .stubbles.reflection.stubReflectionRoutine'10 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 11 'net::stubbles::reflection::annotations::stubAnnotationFactory', 12 'net::stubbles::reflection::stubReflectionClass', 13 'net::stubbles::reflection::stubReflectionParameter', 14 'net::stubbles::reflection::stubReflectionPrimitive', 15 'net::stubbles::reflection::stubReflectionRoutine' 16 16 ); 17 17 /** … … 91 91 * The result is a short but informative representation about the class and 92 92 * its values. Per default, this method returns: 93 * 'net .stubbles.reflection.stubReflectionFunction['[name-of-reflected-function]'()] {}'93 * 'net::stubbles::reflection::stubReflectionFunction['[name-of-reflected-function]'()] {}' 94 94 * <code> 95 * net .stubbles.reflection.stubReflectionFunction[fopen()] {95 * net::stubbles::reflection::stubReflectionFunction[fopen()] { 96 96 * } 97 97 * </code> … … 101 101 public function __toString() 102 102 { 103 return 'net .stubbles.reflection.stubReflectionFunction[' . $this->functionName . "()] {\n}\n";103 return 'net::stubbles::reflection::stubReflectionFunction[' . $this->functionName . "()] {\n}\n"; 104 104 } 105 105 trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php
r1127 r1227 8 8 * @subpackage reflection 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable',11 'net .stubbles.reflection.annotations.stubAnnotationFactory',12 'net .stubbles.reflection.stubReflectionClass',13 'net .stubbles.reflection.stubReflectionParameter',14 'net .stubbles.reflection.stubReflectionPrimitive',15 'net .stubbles.reflection.stubReflectionRoutine'10 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 11 'net::stubbles::reflection::annotations::stubAnnotationFactory', 12 'net::stubbles::reflection::stubReflectionClass', 13 'net::stubbles::reflection::stubReflectionParameter', 14 'net::stubbles::reflection::stubReflectionPrimitive', 15 'net::stubbles::reflection::stubReflectionRoutine' 16 16 ); 17 17 /** … … 104 104 * The result is a short but informative representation about the class and 105 105 * its values. Per default, this method returns: 106 * 'net .stubbles.reflection.stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()] {}'106 * 'net::stubbles::reflection::stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()] {}' 107 107 * <code> 108 * net .stubbles.reflection.stubReflectionMethod[MyClass::myMethod()] {108 * net::stubbles::reflection::stubReflectionMethod[MyClass::myMethod()] { 109 109 * } 110 110 * </code> … … 114 114 public function __toString() 115 115 { 116 return 'net .stubbles.reflection.stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n";116 return 'net::stubbles::reflection::stubReflectionMethod[' . $this->className . '::' . $this->methodName . "()] {\n}\n"; 117 117 } 118 118 trunk/src/main/php/net/stubbles/reflection/stubReflectionObject.php
r1083 r1227 8 8 * @subpackage reflection 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.stubReflectionClass',11 'net .stubbles.reflection.annotations.stubAnnotationFactory',12 'net .stubbles.reflection.stubBaseReflectionClass',13 'net .stubbles.reflection.stubReflectionExtension',14 'net .stubbles.reflection.stubReflectionMethod',15 'net .stubbles.reflection.stubReflectionProperty'10 stubClassLoader::load('net::stubbles::reflection::stubReflectionClass', 11 'net::stubbles::reflection::annotations::stubAnnotationFactory', 12 'net::stubbles::reflection::stubBaseReflectionClass', 13 'net::stubbles::reflection::stubReflectionExtension', 14 'net::stubbles::reflection::stubReflectionMethod', 15 'net::stubbles::reflection::stubReflectionProperty' 16 16 ); 17 17 /** … … 103 103 * The result is a short but informative representation about the class and 104 104 * its values. Per default, this method returns: 105 * 'net .stubbles.reflection.stubReflectionObject['[name-of-reflected-class]'] {}'105 * 'net::stubbles::reflection::stubReflectionObject['[name-of-reflected-class]'] {}' 106 106 * <code> 107 * net .stubbles.reflection.stubReflectionObject[MyClass] {107 * net::stubbles::reflection::stubReflectionObject[MyClass] { 108 108 * } 109 109 * </code> … … 113 113 public function __toString() 114 114 { 115 return 'net .stubbles.reflection.stubReflectionObject[' . $this->className . "] {\n}\n";115 return 'net::stubbles::reflection::stubReflectionObject[' . $this->className . "] {\n}\n"; 116 116 } 117 117 trunk/src/main/php/net/stubbles/reflection/stubReflectionParameter.php
r1127 r1227 7 7 * @subpackage reflection 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable',10 'net .stubbles.reflection.annotations.stubAnnotationFactory',11 'net .stubbles.reflection.stubReflectionFunction',12 'net .stubbles.reflection.stubReflectionClass'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 10 'net::stubbles::reflection::annotations::stubAnnotationFactory', 11 'net::stubbles::reflection::stubReflectionFunction', 12 'net::stubbles::reflection::stubReflectionClass' 13 13 ); 14 14 /** … … 137 137 * The result is a short but informative representation about the class and 138 138 * its values. Per default, this method returns: 139 * 'net .stubbles.reflection.stubReflectionParameter['[name-of-reflected-class]'::'[name-of-reflected-function]'(): Argument '[name-of-reflected-argument]'] {}'139 * 'net::stubbles::reflection::stubReflectionParameter['[name-of-reflected-class]'::'[name-of-reflected-function]'(): Argument '[name-of-reflected-argument]'] {}' 140 140 * <code> 141 * net .stubbles.reflection.stubReflectionParameter[MyClass::myMethod(): Argument foo] {141 * net::stubbles::reflection::stubReflectionParameter[MyClass::myMethod(): Argument foo] { 142 142 * } 143 * net .stubbles.reflection.stubReflectionParameter[myFunction(): Argument bar] {143 * net::stubbles::reflection::stubReflectionParameter[myFunction(): Argument bar] { 144 144 * } 145 145 * </code> … … 150 150 { 151 151 if (is_array($this->routineName) == false) { 152 return 'net .stubbles.reflection.stubReflectionParameter[' . $this->routineName . '(): Argument ' . $this->paramName . "] {\n}\n";153 } 154 155 return 'net .stubbles.reflection.stubReflectionParameter[' . $this->routineName[0] . '::' . $this->routineName[1] . '(): Argument ' . $this->paramName . "] {\n}\n";152 return 'net::stubbles::reflection::stubReflectionParameter[' . $this->routineName . '(): Argument ' . $this->paramName . "] {\n}\n"; 153 } 154 155 return 'net::stubbles::reflection::stubReflectionParameter[' . $this->routineName[0] . '::' . $this->routineName[1] . '(): Argument ' . $this->paramName . "] {\n}\n"; 156 156 } 157 157 trunk/src/main/php/net/stubbles/reflection/stubReflectionPrimitive.php
r940 r1227 7 7 * @subpackage reflection 8 8 */ 9 stubClassLoader::load('net .stubbles.lang.stubEnum',10 'net .stubbles.reflection.stubReflectionType'9 stubClassLoader::load('net::stubbles::lang::stubEnum', 10 'net::stubbles::reflection::stubReflectionType' 11 11 ); 12 12 /** … … 151 151 public function __toString() 152 152 { 153 return 'net .stubbles.reflection.stubReflectionPrimitive[' . $this->value . "] {\n}\n";153 return 'net::stubbles::reflection::stubReflectionPrimitive[' . $this->value . "] {\n}\n"; 154 154 } 155 155 } trunk/src/main/php/net/stubbles/reflection/stubReflectionProperty.php
r1082 r1227 8 8 * @subpackage reflection 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable',11 'net .stubbles.reflection.annotations.stubAnnotationFactory',12 'net .stubbles.reflection.stubReflectionClass'10 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable', 11 'net::stubbles::reflection::annotations::stubAnnotationFactory', 12 'net::stubbles::reflection::stubReflectionClass' 13 13 ); 14 14 /** … … 101 101 * The result is a short but informative representation about the class and 102 102 * its values. Per default, this method returns: 103 * 'net .stubbles.reflection.stubReflectionProperty['[name-of-reflected-class]'::'[name-of-reflected-property]'] {}'103 * 'net::stubbles::reflection::stubReflectionProperty['[name-of-reflected-class]'::'[name-of-reflected-property]'] {}' 104 104 * <code> 105 * net .stubbles.reflection.stubReflectionProperty[MyClass::myProperty] {105 * net::stubbles::reflection::stubReflectionProperty[MyClass::myProperty] { 106 106 * } 107 107 * </code> … … 111 111 public function __toString() 112 112 { 113 return 'net .stubbles.reflection.stubReflectionProperty[' . $this->className . '::' . $this->propertyName . "] {\n}\n";113 return 'net::stubbles::reflection::stubReflectionProperty[' . $this->className . '::' . $this->propertyName . "] {\n}\n"; 114 114 } 115 115 trunk/src/main/php/net/stubbles/reflection/stubReflectionRoutine.php
r1078 r1227 7 7 * @subpackage reflection 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAnnotatable');9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotatable'); 10 10 /** 11 11 * Common base interface for methods and functions. … … 85 85 * The result is a short but informative representation about the class and 86 86 * its values. Per default, this method returns: 87 * 'net .stubbles.reflection.stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()] {}'87 * 'net::stubbles::reflection::stubReflectionMethod['[name-of-reflected-class]'::'[name-of-reflected-method]'()] {}' 88 88 * <code> 89 * net .stubbles.reflection.stubReflectionMethod[MyClass::myMethod()] {89 * net::stubbles::reflection::stubReflectionMethod[MyClass::myMethod()] { 90 90 * } 91 91 * </code> trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAnnotationStateTestCase.php
r1072 r1227 1 1 <?php 2 2 /** 3 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationAnnotationState'.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationAnnotationState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationAnnotationState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationAnnotationState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationAnnotationState'.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationAnnotationState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationArgumentStateTestCase.php
r1072 r1227 1 1 <?php 2 2 /** 3 * Test for net::stubbles::reflection::annotations::parser::st ubAnnotationArgumentState.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationArgumentState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationArgumentState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationArgumentState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net::stubbles::reflection::annotations::parser::st ubAnnotationArgumentState.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationArgumentState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationDocblockStateTestCase.php
r502 r1227 1 1 <?php 2 2 /** 3 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationDocblockState'.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationDocblockState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationDocblockState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationDocblockState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationDocblockState'.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationDocblockState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationNameStateTestCase.php
r1072 r1227 1 1 <?php 2 2 /** 3 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationNameState'.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationNameState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationNameState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationNameState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationNameState'.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationNameState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamNameStateTestCase.php
r455 r1227 1 1 <?php 2 2 /** 3 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationParamNameState'.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationParamNameState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationParamNameState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationParamNameState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationParamNameState'.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationParamNameState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamValueStateTestCase.php
r454 r1227 1 1 <?php 2 2 /** 3 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationParamValueState'.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationParamValueState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationParamValueState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationParamValueState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationParamValueState'.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationParamValueState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamsStateTestCase.php
r454 r1227 1 1 <?php 2 2 /** 3 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationParamsState'.3 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationParamsState. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage reflection_annotations_parser_state_test 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.parser.state.stubAnnotationParamsState');9 stubClassLoader::load('net::stubbles::reflection::annotations::parser::state::stubAnnotationParamsState'); 10 10 Mock::generate('stubAnnotationParser'); 11 11 /** 12 * Test for net .stubbles.reflection.annotations.parser.stubAnnotationParamsState'.12 * Test for net::stubbles::reflection::annotations::parser::state::stubAnnotationParamsState. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTextStateTestCase.php
r469 r1227 1 1 <?php 2 2
