Ignore:
Timestamp:
Jul 12, 2011, 10:56:58 AM (14 years ago)
Author:
cla
Message:

rdfint

  • prefix non-standard methods of rdfa::Data and rdfa::Projection with underscore
  • add note to description of rdfa::SparlEndpoint and rdfa::SparlQuery that they are no-standard as well
File:
1 edited

Legend:

Unmodified
Added
Removed
  • php/trunk/classes/rdfa_Projection.php

    r3 r17  
    2222/**
    2323 *  \class   Projection
    24  *  \brief   This class implements a projection as specified in the RDF API and RDFa specs of W3C.
     24 *  \brief   This class implements a projection as described  in the RDF API and RDFa API specs of W3C.
    2525 *  \details A projection relates to a specific subject of RDF data parsed by an instance of
    2626 *           the rdfa::Data class and is to be created by the projection API methods this class only.
     
    114114   *
    115115   */
    116   public function getUniqueProperties() {
    117     return $this->rdfaData->getUniqueProperties( $this->subject);
    118   } // public function getUniqueProperties
     116  public function _getUniqueProperties() {
     117    return $this->rdfaData->_getUniqueProperties( $this->subject);
     118  } // public function _getUniqueProperties
    119119
    120120  // --------------------------------------------------------
     
    136136
    137137  public function get( $property) {
    138     return $this->rdfaData->getFirstValue( $this->subject, $property);
     138    return $this->rdfaData->_getFirstValue( $this->subject, $property);
    139139  } // public function get
    140140
Note: See TracChangeset for help on using the changeset viewer.