|
Revision 1389, 0.8 kB
(checked in by mikey, 3 months ago)
|
implemented enhancement #128: improved performance of XMLSerializer
Serializing a list of instances of the same object is much faster now.
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', |
|---|
| 10 |
'net::stubbles::reflection::annotations::stubAbstractAnnotation' |
|---|
| 11 |
); |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
interface stubXMLPropertiesAnnotation |
|---|
| 21 |
{ |
|---|
| 22 |
|
|---|
| 23 |
* Get the name of the tag to use for a property |
|---|
| 24 |
* |
|---|
| 25 |
* @param stubReflectionProperty $property |
|---|
| 26 |
* @return string|false |
|---|
| 27 |
*/ |
|---|
| 28 |
public function getTagnameForProperty(stubReflectionProperty $property); |
|---|
| 29 |
} |
|---|
| 30 |
?> |
|---|