Source for file Individual.php

Documentation is available at Individual.php

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

Documentation generated on Fri, 17 Dec 2004 16:14:59 +0100 by phpDocumentor 1.3.0RC3