Last change
on this file since 246 was
12,
checked in by basvannuland, 14 years ago
|
Added RAP RDF API
Added RDF reader writer for save and load survey
|
File size:
922 bytes
|
Rev | Line | |
---|
[12] | 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: Individual.php 320 2006-11-21 09:38:51Z tgauss $
|
---|
| 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 | }
|
---|
| 39 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.