Documentation is available at OWL_C.php
- <?PHP
- // ----------------------------------------------------------------------------------
- // OWL Vocabulary (Resource)
- // ----------------------------------------------------------------------------------
- // Version : 0.9
- // Authors : Daniel Westphal (dawe@gmx.de)
- //
- // Description : Wrapper, defining resources for all concepts of the Web
- // Ontology Language (OWL). For details about OWL see:
- // http://www.w3.org/TR/owl-ref/
- // Using the wrapper allows you to define all aspects of
- // the language in one spot, simplifing implementation and
- // maintainence.
- // ----------------------------------------------------------------------------------
- // <BR><BR>History:<UL>
- // <LI>06-25-2004 : $OWL_equivalentClass, $OWL_equivalentProperty, $OWL_Thing, $OWL_Nothing,
- // $OWL_AllDifferent, $OWL_distinctMembers added (auer@informatik.uni-leipzig.de)</LI>
- // <LI>05-24-2004 : $OWL_DeprecatedClass, $OWL_DeprecatedProperty, $OWL_priorVersion,
- // $OWL_backwardCompatibleWith, $OWL_incompatibleWith (auer@informatik.uni-leipzig.de)</LI>
- // <LI>03-26-2004 : $OWL:_AnnotationProperty and $OWL_DataRange added (auer@informatik.uni-leipzig.de)</LI>
- // <LI>02-21-2003 : Initial version</LI>
- // ----------------------------------------------------------------------------------
- class OWL{
- // OWL concepts
- function ANNOTATION_PROPERTY()
- {
- return new Resource(OWL_NS . 'AnnotationProperty');
- }
- function ALL_DIFFERENT()
- {
- return new Resource(OWL_NS . 'AllDifferent');
- }
- function ALL_VALUES_FROM()
- {
- return new Resource(OWL_NS . 'allValuesFrom');
- }
- function BACKWARD_COMPATIBLE_WITH()
- {
- return new Resource(OWL_NS . 'backwardCompatibleWith');
- }
- function CARDINALITY()
- {
- return new Resource(OWL_NS . 'cardinality');
- }
- function OWL_CLASS()
- {
- return new Resource(OWL_NS . 'Class');
- }
- function COMPLEMENT_OF()
- {
- return new Resource(OWL_NS . 'complementOf');
- }
- function DATATYPE()
- {
- return new Resource(OWL_NS . 'Datatype');
- }
- function DATATYPE_PROPERTY()
- {
- return new Resource(OWL_NS . 'DatatypeProperty');
- }
- function DATA_RANGE()
- {
- return new Resource(OWL_NS . 'DataRange');
- }
- function DATATYPE_RESTRICTION()
- {
- return new Resource(OWL_NS . 'DatatypeRestriction');
- }
- function DEPRECATED_CLASS()
- {
- return new Resource(OWL_NS . 'DeprecatedClass');
- }
- function DEPRECATED_PROPERTY()
- {
- return new Resource(OWL_NS . 'DeprecatedProperty');
- }
- function DISTINCT_MEMBERS()
- {
- return new Resource(OWL_NS . 'distinctMembers');
- }
- function DIFFERENT_FROM()
- {
- return new Resource(OWL_NS . 'differentFrom');
- }
- function DISJOINT_WITH()
- {
- return new Resource(OWL_NS . 'disjointWith');
- }
- function EQUIVALENT_CLASS()
- {
- return new Resource(OWL_NS . 'equivalentClass');
- }
- function EQUIVALENT_PROPERTY()
- {
- return new Resource(OWL_NS . 'equivalentProperty');
- }
- function FUNCTIONAL_PROPERTY()
- {
- return new Resource(OWL_NS . 'FunctionalProperty');
- }
- function HAS_VALUE()
- {
- return new Resource(OWL_NS . 'hasValue');
- }
- function INCOMPATIBLE_WITH()
- {
- return new Resource(OWL_NS . 'incompatibleWith');
- }
- function IMPORTS()
- {
- return new Resource(OWL_NS . 'imports');
- }
- function INTERSECTION_OF()
- {
- return new Resource(OWL_NS . 'intersectionOf');
- }
- function INVERSE_FUNCTIONAL_PROPERTY()
- {
- return new Resource(OWL_NS . 'InverseFunctionalProperty');
- }
- function INVERSE_OF()
- {
- return new Resource(OWL_NS . 'inverseOf');
- }
- function MAX_CARDINALITY()
- {
- return new Resource(OWL_NS . 'maxCardinality');
- }
- function MIN_CARDINALITY()
- {
- return new Resource(OWL_NS . 'minCardinality');
- }
- function NOTHING()
- {
- return new Resource(OWL_NS . 'Nothing');
- }
- function OBJECT_CLASS()
- {
- return new Resource(OWL_NS . 'ObjectClass');
- }
- function OBJECT_PROPERTY()
- {
- return new Resource(OWL_NS . 'ObjectProperty');
- }
- function OBJECT_RESTRICTION()
- {
- return new Resource(OWL_NS . 'ObjectRestriction');
- }
- function ONE_OF()
- {
- return new Resource(OWL_NS . 'oneOf');
- }
- function ON_PROPERTY()
- {
- return new Resource(OWL_NS . 'onProperty');
- }
- function ONTOLOGY()
- {
- return new Resource(OWL_NS . 'Ontology');
- }
- function PRIOR_VERSION()
- {
- return new Resource(OWL_NS . 'priorVersion');
- }
- function PROPERTY()
- {
- return new Resource(OWL_NS . 'Property');
- }
- function RESTRICTION()
- {
- return new Resource(OWL_NS . 'Restriction');
- }
- function SAME_AS()
- {
- return new Resource(OWL_NS . 'sameAs');
- }
- function SAME_CLASS_AS()
- {
- return new Resource(OWL_NS . 'sameClassAs');
- }
- function SAME_INDIVIDUAL_AS()
- {
- return new Resource(OWL_NS . 'sameIndividualAs');
- }
- function SAME_PROPERTY_AS()
- {
- return new Resource(OWL_NS . 'samePropertyAs');
- }
- function SOME_VALUES_FROM()
- {
- return new Resource(OWL_NS . 'someValuesFrom');
- }
- function SYMMETRIC_PROPERTY()
- {
- return new Resource(OWL_NS . 'SymmetricProperty');
- }
- function THING()
- {
- return new Resource(OWL_NS . 'Thing');
- }
- function TRANSITIVE_PROPERTY()
- {
- return new Resource(OWL_NS . 'TransitiveProperty');
- }
- function UNION_OF()
- {
- return new Resource(OWL_NS . 'unionOf');
- }
- function VERSION_INFO()
- {
- return new Resource(OWL_NS . 'versionInfo');
- }
- }
- ?>
Documentation generated on Fri, 17 Dec 2004 16:16:45 +0100 by phpDocumentor 1.3.0RC3