Changeset 17 for php/trunk/classes/rdfa_SparqlEndpoint.php
- Timestamp:
- Jul 12, 2011, 10:56:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/classes/rdfa_SparqlEndpoint.php
r3 r17 23 23 * \class SparqlEndpoint 24 24 * \brief This class implements the configuration class for SPARQL endpoints, used 25 * for creation of rdfa::SparqlQuery objects. 25 * for creation of rdfa::SparqlQuery objects. 26 * <br>This is a library specific extension to the RDF API and RDFa API. 26 27 * \author Christian Langanke 27 28 * \author Adrian Gschwend … … 47 48 /** 48 49 * Creates an endpoint configuration class instance. 50 * 51 * \param aconfig associative list of configuration data 49 52 */ 50 53 public function __construct( $aconfig) { … … 74 77 75 78 /** 76 * Sets an endpoint configuration values 79 * Sets a single configuration value 80 * 81 * \param name name of the configurarion value 82 * \param value new value to be set 77 83 */ 78 84 public function setConfigurationValue( $name, $value) { … … 85 91 86 92 /** 87 * Gets an endpoint configuration values 93 * Gets a single configuration value 94 * 95 * \param name name of the configurarion value 88 96 */ 89 97 public function getConfigurationValue( $name) { … … 97 105 98 106 /** 99 * Queries the list of all endpointconfiguration values107 * Queries an associative list of the configuration values 100 108 */ 101 109 public function getConfigurationValues( ) {
Note:
See TracChangeset
for help on using the changeset viewer.