Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_QueryResult.php |
— | — | @@ -314,7 +314,7 @@ |
315 | 315 | |
316 | 316 | /** |
317 | 317 | * Compatibility alias for getNextDatItem(). |
318 | | - * @deprecated Call getNextDataValue() or getNextDataItem() directly as needed. Method will vanish before SMW 1.7. |
| 318 | + * @deprecated since 1.6. Call getNextDataValue() or getNextDataItem() directly as needed. Method will vanish before SMW 1.7. |
319 | 319 | */ |
320 | 320 | public function getNextObject() { |
321 | 321 | return $this->getNextDataValue(); |
— | — | @@ -323,6 +323,8 @@ |
324 | 324 | /** |
325 | 325 | * Return the next SMWDataItem object or false if no further object exists. |
326 | 326 | * |
| 327 | + * @since 1.6 |
| 328 | + * |
327 | 329 | * @return SMWDataItem or false |
328 | 330 | */ |
329 | 331 | public function getNextDataItem() { |
— | — | @@ -337,6 +339,8 @@ |
338 | 340 | * Return an SMWDataValue object for the next SMWDataItem object or |
339 | 341 | * false if no further object exists. |
340 | 342 | * |
| 343 | + * @since 1.6 |
| 344 | + * |
341 | 345 | * @return SMWDataValue or false |
342 | 346 | */ |
343 | 347 | public function getNextDataValue() { |
— | — | @@ -360,6 +364,8 @@ |
361 | 365 | * |
362 | 366 | * @param integer $outputMode |
363 | 367 | * @param mixed $linker |
| 368 | + * |
| 369 | + * @return string or false |
364 | 370 | */ |
365 | 371 | public function getNextText( $outputMode, $linker = null ) { |
366 | 372 | $dv = $this->getNextDataValue(); |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Number.php |
— | — | @@ -7,6 +7,8 @@ |
8 | 8 | /** |
9 | 9 | * This class implements number data items. |
10 | 10 | * |
| 11 | + * @since 1.6 |
| 12 | + * |
11 | 13 | * @author Markus Krötzsch |
12 | 14 | * @ingroup SMWDataItems |
13 | 15 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Error.php |
— | — | @@ -9,6 +9,8 @@ |
10 | 10 | * pass around lists of error messages within the application. They are not |
11 | 11 | * meant to be stored or exported, but they can be useful to a user. |
12 | 12 | * |
| 13 | + * @since 1.6 |
| 14 | + * |
13 | 15 | * @author Markus Krötzsch |
14 | 16 | * @ingroup SMWDataItems |
15 | 17 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Bool.php |
— | — | @@ -7,6 +7,8 @@ |
8 | 8 | /** |
9 | 9 | * This class implements Boolean data items. |
10 | 10 | * |
| 11 | + * @since 1.6 |
| 12 | + * |
11 | 13 | * @author Markus Krötzsch |
12 | 14 | * @ingroup SMWDataItems |
13 | 15 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Concept.php |
— | — | @@ -10,6 +10,8 @@ |
11 | 11 | * well vanish at some point since Container values could encode this data |
12 | 12 | * just as well. |
13 | 13 | * |
| 14 | + * @since 1.6 |
| 15 | + * |
14 | 16 | * @author Markus Krötzsch |
15 | 17 | * @ingroup SMWDataItems |
16 | 18 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DataItem.php |
— | — | @@ -18,6 +18,8 @@ |
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Exception to be thrown when data items are created from unsuitable inputs. |
| 22 | + * |
| 23 | + * @since 1.6 |
22 | 24 | */ |
23 | 25 | class SMWDataItemException extends Exception { |
24 | 26 | } |
— | — | @@ -37,6 +39,7 @@ |
38 | 40 | * such selection procedures -- they are nothing but data and provide only |
39 | 41 | * minimal interfaces for accessing the stored data (or aspects of it). |
40 | 42 | * |
| 43 | + * @since 1.6 |
41 | 44 | * |
42 | 45 | * @ingroup SMWDataItems |
43 | 46 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Blob.php |
— | — | @@ -7,6 +7,8 @@ |
8 | 8 | /** |
9 | 9 | * This class implements blob (long string) data items. |
10 | 10 | * |
| 11 | + * @since 1.6 |
| 12 | + * |
11 | 13 | * @author Markus Krötzsch |
12 | 14 | * @ingroup SMWDataItems |
13 | 15 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Time.php |
— | — | @@ -22,6 +22,8 @@ |
23 | 23 | * (exactly) passed since a given date, but also for the location of leap |
24 | 24 | * years. |
25 | 25 | * |
| 26 | + * @since 1.6 |
| 27 | + * |
26 | 28 | * @author Markus Krötzsch |
27 | 29 | * @ingroup SMWDataItems |
28 | 30 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_URI.php |
— | — | @@ -7,6 +7,8 @@ |
8 | 8 | /** |
9 | 9 | * This class implements URI data items. |
10 | 10 | * |
| 11 | + * @since 1.6 |
| 12 | + * |
11 | 13 | * @author Markus Krötzsch |
12 | 14 | * @ingroup SMWDataItems |
13 | 15 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_WikiPage.php |
— | — | @@ -7,6 +7,8 @@ |
8 | 8 | /** |
9 | 9 | * This class implements wiki page data items. |
10 | 10 | * |
| 11 | + * @since 1.6 |
| 12 | + * |
11 | 13 | * @author Markus Krötzsch |
12 | 14 | * @ingroup SMWDataItems |
13 | 15 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Property.php |
— | — | @@ -11,6 +11,8 @@ |
12 | 12 | * predefined (built-in) properties, and maintains an association of |
13 | 13 | * property IDs, localized labels, and aliases. |
14 | 14 | * |
| 15 | + * @since 1.6 |
| 16 | + * |
15 | 17 | * @author Markus Krötzsch |
16 | 18 | * @ingroup SMWDataItems |
17 | 19 | */ |
Index: trunk/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_String.php |
— | — | @@ -6,6 +6,8 @@ |
7 | 7 | |
8 | 8 | /** |
9 | 9 | * Exception to be thrown when input string is too long. |
| 10 | + * |
| 11 | + * @since 1.6 |
10 | 12 | */ |
11 | 13 | class SMWStringLengthException extends SMWDataItemException { |
12 | 14 | public function __construct( $string ) { |
— | — | @@ -16,6 +18,8 @@ |
17 | 19 | /** |
18 | 20 | * This class implements (length restricted) string data items. |
19 | 21 | * |
| 22 | + * @since 1.6 |
| 23 | + * |
20 | 24 | * @author Markus Krötzsch |
21 | 25 | * @ingroup SMWDataItems |
22 | 26 | */ |