Changeset 1127 for trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php
- Timestamp:
- 12/06/07 23:11:20 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.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 class stubXMLIgnoreAnnotation extends stubAbstractAnnotation implements stubAnnotation { 20 class stubXMLIgnoreAnnotation extends stubAbstractAnnotation implements stubAnnotation 21 { 21 22 22 23 /** … … 25 26 * @return int 26 27 */ 27 public function getAnnotationTarget() { 28 public function getAnnotationTarget() 29 { 28 30 return stubAnnotation::TARGET_ALL; 29 31 }
