Changeset 213
- Timestamp:
- 02/05/07 21:30:33 (1 year ago)
- Files:
-
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php (modified) (4 diffs)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php
r211 r213 2 2 /** 3 3 * Annotation for XMLSerializer 4 * 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> 6 6 * @package stubbles … … 12 12 /** 13 13 * Annotation for XMLSerializer 14 * 14 * 15 15 * Use this annotation to serialize a value as an XML attribute. 16 * 16 * 17 17 * Properties of the annotation are: 18 18 * - attributeName … … 21 21 * @subpackage xml_serializer 22 22 */ 23 class XMLAttributeextends stubAbstractAnnotation implements stubAnnotation {23 class stubXMLAttributeAnnotation extends stubAbstractAnnotation implements stubAnnotation { 24 24 25 25 /** … … 47 47 return $this->attributeName; 48 48 } 49 49 50 50 /** 51 51 * Returns the target of the annotation as bitmap. trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php
r211 r213 2 2 /** 3 3 * Annotation for XMLSerializer 4 * 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> 6 6 * @package stubbles … … 12 12 /** 13 13 * Annotation for XMLSerializer 14 * 14 * 15 15 * Use this annotation, if you do not want a property to be serialized. 16 16 * … … 18 18 * @subpackage xml_serializer 19 19 */ 20 class XMLIgnoreextends stubAbstractAnnotation implements stubAnnotation {20 class stubXMLIgnoreAnnotation extends stubAbstractAnnotation implements stubAnnotation { 21 21 22 22 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php
r211 r213 21 21 * @subpackage xml_serializer 22 22 */ 23 class XMLMatcherextends stubAbstractAnnotation implements stubAnnotation {23 class stubXMLMatcherAnnotation extends stubAbstractAnnotation implements stubAnnotation { 24 24 25 25 /** trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php
r211 r213 2 2 /** 3 3 * Annotation for XMLSerializer 4 * 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> 6 6 * @package stubbles … … 12 12 /** 13 13 * Annotation for XMLSerializer 14 * 14 * 15 15 * Use this annotation to serialize a value as an XML tag. 16 * 16 * 17 17 * Properties of the annotation are: 18 18 * - tagName … … 22 22 * @subpackage xml_serializer 23 23 */ 24 class XMLTagextends stubAbstractAnnotation implements stubAnnotation {24 class stubXMLTagAnnotation extends stubAbstractAnnotation implements stubAnnotation { 25 25 26 26 /** … … 73 73 return $this->elementTagName; 74 74 } 75 75 76 76 /** 77 77 * Returns the target of the annotation as bitmap.
