Changeset 17 for php/trunk/classes/rdfa_Projection.php
- Timestamp:
- Jul 12, 2011, 10:56:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/classes/rdfa_Projection.php
r3 r17 22 22 /** 23 23 * \class Projection 24 * \brief This class implements a projection as specified in the RDF API and RDFaspecs of W3C.24 * \brief This class implements a projection as described in the RDF API and RDFa API specs of W3C. 25 25 * \details A projection relates to a specific subject of RDF data parsed by an instance of 26 26 * the rdfa::Data class and is to be created by the projection API methods this class only. … … 114 114 * 115 115 */ 116 public function getUniqueProperties() {117 return $this->rdfaData-> getUniqueProperties( $this->subject);118 } // public function getUniqueProperties116 public function _getUniqueProperties() { 117 return $this->rdfaData->_getUniqueProperties( $this->subject); 118 } // public function _getUniqueProperties 119 119 120 120 // -------------------------------------------------------- … … 136 136 137 137 public function get( $property) { 138 return $this->rdfaData-> getFirstValue( $this->subject, $property);138 return $this->rdfaData->_getFirstValue( $this->subject, $property); 139 139 } // public function get 140 140
Note:
See TracChangeset
for help on using the changeset viewer.