- Timestamp:
- Jul 13, 2011, 12:35:16 PM (14 years ago)
- Location:
- php/trunk/classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/classes/rdfa_Data.php
r23 r28 361 361 * \param curie CURIE to be resolved to a URI 362 362 * 363 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>363 * \note This method is a library specific extension to the RDF API and RDFa API 364 364 */ 365 365 public function _resolve( $curie) { … … 400 400 * \param uri URI to be shrinked to a CURIE 401 401 * 402 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>402 * \note This method is a library specific extension to the RDF API and RDFa API 403 403 */ 404 404 public function _shrink( $uri) { … … 434 434 * \param toparse resource to parse from. This can be a URI or an object of SparqlQuery 435 435 * 436 * <strong>NOTE:436 * \note 437 437 * - This method is defined for the RDF API, but a library specific extension to the RDFa API. 438 * - Parsing from a SPARQL CONSTRUCT query by using a SparqlQuery object, is a library specific 438 * - Parsing from a SPARQL CONSTRUCT query by using a SparqlQuery object, is a library specific 439 439 * extension to both the RDF API and RDFa API. 440 * </strong>441 440 */ 442 441 public function parse( $toparse) { … … 607 606 * If a subject isn't provided, all unique properties expressed in the RDF data are returned. 608 607 * 609 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>608 * \note This method is a library specific extension to the RDF API and RDFa API 610 609 */ 611 610 public function _getUniqueProperties( $subject = Null) { … … 715 714 * If no arguments are provided, the first value expressed in the RDF data is returned. 716 715 * 717 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>716 * \note This method is a library specific extension to the RDF API and RDFa API 718 717 */ 719 718 public function _getFirstValue( $subject = Null, $property = Null) { … … 773 772 * \see rdfa::Projection::set 774 773 * 775 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>774 * \note This method is a library specific extension to the RDF API and RDFa API 776 775 */ 777 776 … … 1002 1001 * - json 1003 1002 * 1004 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>1003 * \note This method is a library specific extension to the RDF API and RDFa API 1005 1004 */ 1006 1005 public function _serialize( $type ) { -
php/trunk/classes/rdfa_Projection.php
r21 r28 49 49 * Creates a Projection instance from a Data instance, reflecting a given subject in the triple data. 50 50 * 51 * Note: a projection is to be created by the following methods only: 51 * \param rdfaData instance of Reader holding the RDF data 52 * \param subject subject of the projection 53 * \param template template array specifying the members to be created from data linked to the subject 54 * 55 * \note A projection is to be created by the following methods only: 52 56 * - rdfa::Data::getProjection() 53 57 * - rdfa::Data::getProjections() 54 58 * - rdfa::Data::query() 55 *56 * \param rdfaData instance of Reader holding the RDF data57 * \param subject subject of the projection58 * \param template template array specifying the members to be created from data linked to the subject59 59 */ 60 60 public function __construct( $rdfaData, $subject, $template) { … … 111 111 * All non-unique properties are NOT returned ! 112 112 * 113 * <strong>NOTE: This method is a library specific extension to the RDF API and RDFa API.</strong>113 * \note This method is a library specific extension to the RDF API and RDFa API 114 114 * 115 115 */ … … 167 167 * \see rdfa::Data::setValue 168 168 * 169 * <strong>NOTE:169 * \note 170 170 * - This method is a library specific extension to the RDFa API 171 171 * - The parameter type is a library specific extension to the RDF API 172 * </strong>173 172 */ 174 173 -
php/trunk/classes/rdfa_SparqlQuery.php
r17 r28 53 53 * \param statement SPARQL CONSTRUCT query statement to execute. 54 54 * 55 * Note: to effectively execute the query, invoke the method55 * \note To effectively execute the query, invoke the method 56 56 * - rdfa::SparqlQuery::run() 57 57 */
Note:
See TracChangeset
for help on using the changeset viewer.