- Timestamp:
- 02/29/08 15:57:54 (3 months ago)
- Files:
-
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMethodsAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLPropertiesAnnotation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php
r1311 r1389 48 48 * 49 49 * @param stubReflectionProperty $property 50 * @param mixed $propertyValue51 50 * @return string|false 52 51 * @throws stubXMLException 53 52 */ 54 public function getTagnameForProperty(stubReflectionProperty $property , $propertyValue)53 public function getTagnameForProperty(stubReflectionProperty $property) 55 54 { 56 55 $matches = array(); … … 75 74 * 76 75 * @param stubReflectionMethod $method 77 * @param mixed $returnValue78 76 * @return string|bool 79 77 * @throws stubXMLException 80 78 */ 81 public function getTagnameForMethod(stubReflectionMethod $method , $returnValue)79 public function getTagnameForMethod(stubReflectionMethod $method) 82 80 { 83 81 $matches = array(); trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMethodsAnnotation.php
r1276 r1389 24 24 * 25 25 * @param stubReflectionMethod $method 26 * @param mixed $returnValue27 26 * @return string|false 28 27 */ 29 public function getTagnameForMethod(stubReflectionMethod $method , $returnValue);28 public function getTagnameForMethod(stubReflectionMethod $method); 30 29 } 31 30 ?> trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLPropertiesAnnotation.php
r1229 r1389 24 24 * 25 25 * @param stubReflectionProperty $property 26 * @param mixed $propertyValue27 26 * @return string|false 28 27 */ 29 public function getTagnameForProperty(stubReflectionProperty $property , $propertyValue);28 public function getTagnameForProperty(stubReflectionProperty $property); 30 29 } 31 30 ?>
