1 | <?php
|
---|
2 | /**
|
---|
3 | * OWL Vocabulary
|
---|
4 | *
|
---|
5 | * @version $Id: OWL.php 431 2007-05-01 15:49:19Z cweiske $
|
---|
6 | * @author Daniel Westphal (dawe@gmx.de)
|
---|
7 | * @package vocabulary
|
---|
8 | *
|
---|
9 | * Wrapper, defining resources for all terms of theWeb
|
---|
10 | * Ontology Language (OWL). For details about OWL see:
|
---|
11 | * http://www.w3.org/TR/owl-ref/
|
---|
12 | * Using the wrapper allows you to define all aspects of
|
---|
13 | * the vocabulary in one spot, simplifing implementation and
|
---|
14 | * maintainence.
|
---|
15 | */
|
---|
16 |
|
---|
17 | // OWL concepts
|
---|
18 | $OWL_AnnotationProperty = new Resource(OWL_NS . 'AnnotationProperty');
|
---|
19 | $OWL_AllDifferent = new Resource(OWL_NS . 'AllDifferent');
|
---|
20 | $OWL_allValuesFrom = new Resource(OWL_NS . 'allValuesFrom');
|
---|
21 | $OWL_backwardCompatibleWith = new Resource(OWL_NS . 'backwardCompatibleWith');
|
---|
22 | $OWL_cardinality = new Resource(OWL_NS . 'cardinality');
|
---|
23 | $OWL_Class = new Resource(OWL_NS . 'Class');
|
---|
24 | $OWL_complementOf = new Resource(OWL_NS . 'complementOf');
|
---|
25 | $OWL_Datatype = new Resource(OWL_NS . 'Datatype');
|
---|
26 | $OWL_DatatypeProperty = new Resource(OWL_NS . 'DatatypeProperty');
|
---|
27 | $OWL_DataRange = new Resource(OWL_NS . 'DataRange');
|
---|
28 | $OWL_DatatypeRestriction = new Resource(OWL_NS . 'DatatypeRestriction');
|
---|
29 | $OWL_DeprecatedClass = new Resource(OWL_NS . 'DeprecatedClass');
|
---|
30 | $OWL_DeprecatedProperty = new Resource(OWL_NS . 'DeprecatedProperty');
|
---|
31 | $OWL_distinctMembers = new Resource(OWL_NS . 'distinctMembers');
|
---|
32 | $OWL_differentFrom = new Resource(OWL_NS . 'differentFrom');
|
---|
33 | $OWL_disjointWith = new Resource(OWL_NS . 'disjointWith');
|
---|
34 | $OWL_equivalentClass = new Resource(OWL_NS . 'equivalentClass');
|
---|
35 | $OWL_equivalentProperty = new Resource(OWL_NS . 'equivalentProperty');
|
---|
36 | $OWL_FunctionalProperty = new Resource(OWL_NS . 'FunctionalProperty');
|
---|
37 | $OWL_hasValue = new Resource(OWL_NS . 'hasValue');
|
---|
38 | $OWL_incompatibleWith = new Resource(OWL_NS . 'incompatibleWith');
|
---|
39 | $OWL_imports = new Resource(OWL_NS . 'imports');
|
---|
40 | $OWL_intersectionOf = new Resource(OWL_NS . 'intersectionOf');
|
---|
41 | $OWL_InverseFunctionalProperty = new Resource(OWL_NS . 'InverseFunctionalProperty');
|
---|
42 | $OWL_inverseOf = new Resource(OWL_NS . 'inverseOf');
|
---|
43 | $OWL_maxCardinality = new Resource(OWL_NS . 'maxCardinality');
|
---|
44 | $OWL_minCardinality = new Resource(OWL_NS . 'minCardinality');
|
---|
45 | $OWL_Nothing = new Resource(OWL_NS . 'Nothing');
|
---|
46 | $OWL_ObjectClass = new Resource(OWL_NS . 'ObjectClass');
|
---|
47 | $OWL_ObjectProperty = new Resource(OWL_NS . 'ObjectProperty');
|
---|
48 | $OWL_ObjectRestriction = new Resource(OWL_NS . 'ObjectRestriction');
|
---|
49 | $OWL_oneOf = new Resource(OWL_NS . 'oneOf');
|
---|
50 | $OWL_onProperty = new Resource(OWL_NS . 'onProperty');
|
---|
51 | $OWL_Ontology = new Resource(OWL_NS . 'Ontology');
|
---|
52 | $OWL_priorVersion = new Resource(OWL_NS . 'priorVersion');
|
---|
53 | $OWL_Property = new Resource(OWL_NS . 'Property');
|
---|
54 | $OWL_Restriction = new Resource(OWL_NS . 'Restriction');
|
---|
55 | $OWL_sameAs = new Resource(OWL_NS . 'sameAs');
|
---|
56 | $OWL_sameClassAs = new Resource(OWL_NS . 'sameClassAs');
|
---|
57 | $OWL_sameIndividualAs = new Resource(OWL_NS . 'sameIndividualAs');
|
---|
58 | $OWL_samePropertyAs = new Resource(OWL_NS . 'samePropertyAs');
|
---|
59 | $OWL_someValuesFrom = new Resource(OWL_NS . 'someValuesFrom');
|
---|
60 | $OWL_SymmetricProperty = new Resource(OWL_NS . 'SymmetricProperty');
|
---|
61 | $OWL_Thing = new Resource(OWL_NS . 'Thing');
|
---|
62 | $OWL_TransitiveProperty = new Resource(OWL_NS . 'TransitiveProperty');
|
---|
63 | $OWL_unionOf = new Resource(OWL_NS . 'unionOf');
|
---|
64 | $OWL_versionInfo = new Resource(OWL_NS . 'versionInfo');
|
---|
65 |
|
---|
66 | ?> |
---|