Changeset 1127 for trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLPropertiesAnnotation.php
- Timestamp:
- 12/06/07 23:11:20 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLPropertiesAnnotation.php
r432 r1127 5 5 * @author Stephan Schmidt <schst@stubbles.net> 6 6 * @package stubbles 7 * @subpackage xml_serializer 7 * @subpackage xml_serializer_annotations 8 8 */ 9 9 stubClassLoader::load('net.stubbles.reflection.annotations.stubAnnotation', 10 'net.stubbles.reflection.annotations.stubAbstractAnnotation' );11 10 'net.stubbles.reflection.annotations.stubAbstractAnnotation' 11 ); 12 12 /** 13 13 * Annotation for XMLSerializer … … 16 16 * 17 17 * @package stubbles 18 * @subpackage xml_serializer 18 * @subpackage xml_serializer_annotations 19 19 */ 20 interface stubXMLPropertiesAnnotation {21 20 interface stubXMLPropertiesAnnotation 21 { 22 22 /** 23 23 * Get the name of the tag to use for a property 24 24 * 25 * @param stubReflectionProperty$property26 * @param mixed$propertyValue27 * @return string|false25 * @param stubReflectionProperty $property 26 * @param mixed $propertyValue 27 * @return string|false 28 28 */ 29 29 public function getTagnameForProperty(stubReflectionProperty $property, $propertyValue);
