Last change
on this file since 303 was
256,
checked in by hendrikvanantwerpen, 13 years ago
|
Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).
|
File size:
922 bytes
|
Line | |
---|
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.