Changeset 213

Show
Ignore:
Timestamp:
02/05/07 21:30:33 (1 year ago)
Author:
schst
Message:

Fixed annotation class names

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php

    r211 r213  
    22/** 
    33 * Annotation for XMLSerializer 
    4  *  
     4 * 
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
     
    1212/** 
    1313 * Annotation for XMLSerializer 
    14  *  
     14 * 
    1515 * Use this annotation to serialize a value as an XML attribute. 
    16  *  
     16 * 
    1717 * Properties of the annotation are: 
    1818 * - attributeName 
     
    2121 * @subpackage  xml_serializer 
    2222 */ 
    23 class XMLAttribute extends stubAbstractAnnotation implements stubAnnotation { 
     23class stubXMLAttributeAnnotation extends stubAbstractAnnotation implements stubAnnotation { 
    2424 
    2525    /** 
     
    4747        return $this->attributeName; 
    4848    } 
    49      
     49 
    5050    /** 
    5151     * Returns the target of the annotation as bitmap. 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php

    r211 r213  
    22/** 
    33 * Annotation for XMLSerializer 
    4  *  
     4 * 
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
     
    1212/** 
    1313 * Annotation for XMLSerializer 
    14  *  
     14 * 
    1515 * Use this annotation, if you do not want a property to be serialized. 
    1616 * 
     
    1818 * @subpackage  xml_serializer 
    1919 */ 
    20 class XMLIgnore extends stubAbstractAnnotation implements stubAnnotation { 
     20class stubXMLIgnoreAnnotation extends stubAbstractAnnotation implements stubAnnotation { 
    2121 
    2222    /** 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php

    r211 r213  
    2121 * @subpackage  xml_serializer 
    2222 */ 
    23 class XMLMatcher extends stubAbstractAnnotation implements stubAnnotation { 
     23class stubXMLMatcherAnnotation extends stubAbstractAnnotation implements stubAnnotation { 
    2424 
    2525    /** 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php

    r211 r213  
    22/** 
    33 * Annotation for XMLSerializer 
    4  *  
     4 * 
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
     
    1212/** 
    1313 * Annotation for XMLSerializer 
    14  *  
     14 * 
    1515 * Use this annotation to serialize a value as an XML tag. 
    16  *  
     16 * 
    1717 * Properties of the annotation are: 
    1818 * - tagName 
     
    2222 * @subpackage  xml_serializer 
    2323 */ 
    24 class XMLTag extends stubAbstractAnnotation implements stubAnnotation { 
     24class stubXMLTagAnnotation extends stubAbstractAnnotation implements stubAnnotation { 
    2525 
    2626    /** 
     
    7373        return $this->elementTagName; 
    7474    } 
    75      
     75 
    7676    /** 
    7777     * Returns the target of the annotation as bitmap.