Ignore:
Timestamp:
Jul 13, 2011, 1:33:27 PM (14 years ago)
Author:
cla
Message:

rdfint

  • all classes: added missing comments on return value
  • Projection::construct and rdfa::SparqlQuery: added missing comment on exceptions
  • Data::parse
    • added note on merge feature
    • added code to return boolean
File:
1 edited

Legend:

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

    r17 r29  
    4949   * Creates an endpoint configuration class instance.
    5050   *
    51    * \param aconfig    associative list of configuration data
     51   * \param aconfig    Associative list of configuration data
    5252   */
    5353  public function __construct( $aconfig) {
     
    5858    // initialize instance vars
    5959    $this->aconfig = array();
    60    
     60
    6161    // store inital configuration
    6262    if (is_array( $aconfig)) {
     
    7979   * Sets a single configuration value
    8080   *
    81    * \param name   name of the configurarion value
    82    * \param value  new value to be set
     81   * \param name   Name of the configurarion value
     82   * \param value  New value to be set
     83   * \retval void
    8384   */
    8485  public function setConfigurationValue( $name, $value) {
     
    9394   * Gets a single configuration value
    9495   *
    95    * \param name   name of the configurarion value
     96   * \param  name    Name of the configurarion value
     97   * \retval string  Value of the specified configuration value
     98   * \retval boolean false: the configuration value was not found
    9699   */
    97100  public function getConfigurationValue( $name) {
     
    106109  /**
    107110   * Queries an associative list of the configuration values
     111   *
     112   * \retval array  Associative list of the configuration data
    108113   */
    109114  public function getConfigurationValues( ) {
Note: See TracChangeset for help on using the changeset viewer.