Source for file Individual.php

Documentation is available at Individual.php

  1. <?php
  2. // ----------------------------------------------------------------------------------
  3. // Class: Individual
  4. // ----------------------------------------------------------------------------------
  5.  
  6.  
  7.  
  8. /**
  9. * Interface that encapsulates an individual in an ontology, sometimes referred
  10. * to as a fact or assertion.
  11. * In order to be recognised as an individual, rather than a generic resource,
  12. * at least one rdf:type statement, referring to a known class, must be present
  13. * in the model.
  14. *
  15.  
  16. @version  $Id: fsource_ontModel__ontModelIndividual.php.html 443 2007-06-01 16:25:38Z cax $
  17. @author Daniel Westphal <mail at d-westphal dot de>
  18. *
  19. *
  20. @package     ontModel
  21. @access    public
  22. ***/    
  23.  
  24. class Individual extends OntResource   
  25. {
  26.     
  27.     /**
  28.     * Constructor
  29.     * You can supply a uri
  30.     *
  31.     * @param string $uri 
  32.     * @access    public
  33.     */        
  34.     function Individual($uri null)
  35.     {
  36.         parent::OntResource($uri);
  37.     }
  38. ?>

Documentation generated on Fri, 1 Jun 2007 16:49:18 +0200 by phpDocumentor 1.3.2